diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 37aef8d3..509c4a29 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip networkTimeout=10000 zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/mod/beautify/build.gradle b/mod/beautify/build.gradle deleted file mode 100644 index f9f9fa84..00000000 --- a/mod/beautify/build.gradle +++ /dev/null @@ -1,116 +0,0 @@ -plugins { - id 'fabric-loom' version '1.2-SNAPSHOT' - id 'maven-publish' -} - -version = project.mod_version -group = project.maven_group - -loom { - accessWidenerPath = file("src/main/resources/beautify.accesswidener") -} - -base { - archivesName = project.archives_base_name -} - -repositories { - maven { - name = "Shedaniel Maven" - url "https://maven.shedaniel.me/" - } - maven { - name = 'TerraformersMC Maven' - url = 'https://maven.terraformersmc.com/releases' - } - maven { - name = 'isXander Maven' - url = "https://maven.isxander.dev/releases" - } - maven { - name = "Curse Maven" - url "https://www.cursemaven.com" - content { - includeGroup "curse.maven" - } - } -} - -loom { - //splitEnvironmentSourceSets() - - mods { - "beautify" { - sourceSet sourceSets.main - //sourceSet sourceSets.client - } - } - -} - -dependencies { - minecraft "com.mojang:minecraft:${minecraft_version}" - mappings loom.layered() { - officialMojangMappings() - } - //mappings "net.fabricmc:yarn:${yarn_mappings}:v2" - modImplementation "net.fabricmc:fabric-loader:${loader_version}" - - modImplementation "net.fabricmc.fabric-api:fabric-api:${fabric_version}" - - modImplementation "curse.maven:jade-324717:${jade_id}" - - modApi("me.shedaniel.cloth:cloth-config-fabric:${cloth_config_version}") { - exclude(group: "net.fabricmc.fabric-api") - } - - modImplementation("com.terraformersmc:modmenu:${modmenu_version}") { - exclude(group: "net.fabricmc.fabric-api") - } - -} - -processResources { - inputs.property "version", project.version - - filesMatching("fabric.mod.json") { - expand "version": project.version - } -} - -tasks.withType(JavaCompile).configureEach { - it.options.release = 17 -} - -java { - // Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task - // if it is present. - // If you remove this line, sources will not be generated. - withSourcesJar() - - sourceCompatibility = JavaVersion.VERSION_17 - targetCompatibility = JavaVersion.VERSION_17 -} - -jar { - from("LICENSE") { - rename { "${it}_${project.archivesBaseName}"} - } -} - -// configure the maven publication -publishing { - publications { - mavenJava(MavenPublication) { - from components.java - } - } - - // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. - repositories { - // Add repositories to publish to here. - // Notice: This block does NOT have the same function as the block in the top level. - // The repositories here will be used for publishing your artifact, not for - // retrieving dependencies. - } -} \ No newline at end of file diff --git a/mod/beautify/gradle.properties b/mod/beautify/gradle.properties deleted file mode 100644 index 7724ab2a..00000000 --- a/mod/beautify/gradle.properties +++ /dev/null @@ -1,21 +0,0 @@ -# Done to increase the memory available to gradle. -org.gradle.jvmargs=-Xmx3G -org.gradle.parallel=true - -# Fabric Properties -# check these on https://fabricmc.net/develop -minecraft_version=1.20.1 -yarn_mappings=1.20.1+build.5 -loader_version=0.14.21 - -# Mod Properties -mod_version=1.0.0+1.20 -maven_group=com.github.suel_ki.beautify -archives_base_name=beautify - -# Dependencies -fabric_version=0.83.0+1.20.1 -mixinextras_version=0.1.1 -cloth_config_version=11.0.99 -jade_id=4595080 -modmenu_version=7.0.1 \ No newline at end of file diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/Beautify.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/Beautify.java deleted file mode 100644 index 51760aca..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/Beautify.java +++ /dev/null @@ -1,154 +0,0 @@ -package com.github.suel_ki.beautify; - -import com.github.suel_ki.beautify.core.init.BlockInit; -import com.github.suel_ki.beautify.core.init.ItemInit; -import com.github.suel_ki.beautify.core.init.TradesInit; -import com.github.suel_ki.beautify.util.BeautifyConfig; -import com.mojang.datafixers.util.Pair; -import me.shedaniel.autoconfig.AutoConfig; -import me.shedaniel.autoconfig.serializer.GsonConfigSerializer; -import net.fabricmc.api.ModInitializer; -import net.fabricmc.fabric.api.event.lifecycle.v1.ServerLifecycleEvents; -import net.fabricmc.fabric.api.itemgroup.v1.FabricItemGroup; -import net.minecraft.core.Holder; -import net.minecraft.core.Registry; -import net.minecraft.core.registries.BuiltInRegistries; -import net.minecraft.core.registries.Registries; -import net.minecraft.network.chat.Component; -import net.minecraft.resources.ResourceKey; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.server.MinecraftServer; -import net.minecraft.world.item.CreativeModeTab; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.level.levelgen.structure.pools.SinglePoolElement; -import net.minecraft.world.level.levelgen.structure.pools.StructurePoolElement; -import net.minecraft.world.level.levelgen.structure.pools.StructureTemplatePool; -import net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessorList; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; - -import java.util.ArrayList; -import java.util.List; - -public class Beautify implements ModInitializer { - - public static BeautifyConfig CONFIG; - - public static final String MODID = "beautify"; - - public static final Logger LOGGER = LoggerFactory.getLogger(MODID); - - // TAB - public static final CreativeModeTab BEAUTIFY_TAB = FabricItemGroup.builder() - .title(Component.translatable("itemGroup.beautify.group")) - .icon(ItemInit.HANGING_POT_ITEM::getDefaultInstance) - .displayItems((enabledFeatures, entries) -> entries.acceptAll(ItemInit.ITEMS.keySet().stream().map(ItemStack::new).toList())) // adds items to itemgroup - .build(); - - @Override - public void onInitialize() { - - AutoConfig.register(BeautifyConfig.class, GsonConfigSerializer::new); - CONFIG = AutoConfig.getConfigHolder(BeautifyConfig.class).getConfig(); - // Fuel - ItemInit.registerFuel(); - // Trades - TradesInit.addCustomTrades(); - // Flammable - BlockInit.registerFlammableBlock(); - // Add new buildings to villages - ServerLifecycleEvents.SERVER_STARTED.register(this::addNewVillageBuilding); - Registry.register(BuiltInRegistries.CREATIVE_MODE_TAB, Beautify.id("group"), BEAUTIFY_TAB); - } - - public static ResourceLocation id(String name) { - return new ResourceLocation(MODID, name); - } - - private static final ResourceKey EMPTY_PROCESSOR_LIST_KEY = ResourceKey - .create(Registries.PROCESSOR_LIST, new ResourceLocation("minecraft", "empty")); - - - - /** - * Adds the building to the targeted pool. We will call this in - * addNewVillageBuilding method further down to add to every village. - * Note: This is an additive operation which means multiple mods can do this and - * they stack with each other safely. - */ - private static void addBuildingToPool(Registry templatePoolRegistry, - Registry processorListRegistry, ResourceLocation poolRL, String nbtPieceRL, - int weight) { - - // Grabs the processor list we want to use along with our piece. - // This is a requirement as using the ProcessorLists.EMPTY field will cause the - // game to throw errors. - // The reason why is the empty processor list in the world's registry is not the - // same instance as in that field once the world is started up. - Holder emptyProcessorList = processorListRegistry - .getHolderOrThrow(EMPTY_PROCESSOR_LIST_KEY); - - // Grab the pool we want to add to - StructureTemplatePool pool = templatePoolRegistry.get(poolRL); - if (pool == null) { - return; - } - - // Grabs the nbt piece and creates a SinglePoolElement of it that we can add to - // a structure's pool. - // Use .legacy( for villages/outposts and .single( for everything else - SinglePoolElement piece = SinglePoolElement.legacy(nbtPieceRL, emptyProcessorList) - .apply(StructureTemplatePool.Projection.RIGID); - - // Use Accesswidener or Accessor Mixin to make StructureTemplatePool's - // templates field public for us to see. - // Weight is handled by how many times the entry appears in this list. - // We do not need to worry about immutability as this field is created using - // Lists.newArrayList(); which makes a mutable list. - for (int i = 0; i < weight; i++) { - pool.templates.add(piece); - } - - // Use AccessTransformer or Accessor Mixin to make StructureTemplatePool's - // rawTemplates field public for us to see. - // This list of pairs of pieces and weights is not used by vanilla by default - // but another mod may need it for efficiency. - // So lets add to this list for completeness. We need to make a copy of the - // array as it can be an immutable list. - List> listOfPieceEntries = new ArrayList<>(pool.rawTemplates); - listOfPieceEntries.add(new Pair<>(piece, weight)); - pool.rawTemplates = listOfPieceEntries; - } - - /** - * We use ServerLifecycleEvents.SERVER_STARTED as the dynamic registry exists now and all - * JSON worldgen files were parsed. Mod compat is best done here. - */ - public void addNewVillageBuilding(MinecraftServer server) { - Registry templatePoolRegistry = server.registryAccess() - .registry(Registries.TEMPLATE_POOL).orElseThrow(); - Registry processorListRegistry = server.registryAccess() - .registry(Registries.PROCESSOR_LIST).orElseThrow(); - - int weight = CONFIG.houses.botanistSpawnWeight; - - // Adds our piece to all village houses pool - // Note, the resourcelocation is getting the pool files from the data folder. - // Not assets folder. - addBuildingToPool(templatePoolRegistry, processorListRegistry, - new ResourceLocation("minecraft:village/plains/streets"), "beautify:botanist_house_plains", weight); - - addBuildingToPool(templatePoolRegistry, processorListRegistry, - new ResourceLocation("minecraft:village/snowy/streets"), "beautify:botanist_house_snowy", weight); - - addBuildingToPool(templatePoolRegistry, processorListRegistry, - new ResourceLocation("minecraft:village/savanna/streets"), "beautify:botanist_house_savanna", weight); - - addBuildingToPool(templatePoolRegistry, processorListRegistry, - new ResourceLocation("minecraft:village/taiga/streets"), "beautify:botanist_house_taiga", weight); - - addBuildingToPool(templatePoolRegistry, processorListRegistry, - new ResourceLocation("minecraft:village/desert/streets"), "beautify:botanist_house_desert", weight); - } - -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/client/BeautifyClient.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/client/BeautifyClient.java deleted file mode 100644 index 05c238bc..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/client/BeautifyClient.java +++ /dev/null @@ -1,17 +0,0 @@ -package com.github.suel_ki.beautify.client; - -import com.github.suel_ki.beautify.client.block.ClientBlockInit; -import com.github.suel_ki.beautify.particle.ParticleInit; -import net.fabricmc.api.ClientModInitializer; -import net.fabricmc.api.EnvType; -import net.fabricmc.api.Environment; - -@Environment(EnvType.CLIENT) -public class BeautifyClient implements ClientModInitializer { - - @Override - public void onInitializeClient() { - ParticleInit.registerParticle(); - ClientBlockInit.registerBlockRenderLayer(); - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/client/block/ClientBlockInit.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/client/block/ClientBlockInit.java deleted file mode 100644 index 25b9fd66..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/client/block/ClientBlockInit.java +++ /dev/null @@ -1,60 +0,0 @@ -package com.github.suel_ki.beautify.client.block; - -import com.github.suel_ki.beautify.core.init.BlockInit; -import net.fabricmc.fabric.api.blockrenderlayer.v1.BlockRenderLayerMap; -import net.minecraft.client.renderer.RenderType; - -public class ClientBlockInit { - - public static void registerBlockRenderLayer() { - BlockRenderLayerMap.INSTANCE.putBlocks(RenderType.cutout(), - // BLOCKS - BlockInit.BOOKSTACK, - BlockInit.HANGING_POT, - BlockInit.ROPE, - BlockInit.BOTANIST_WORKBENCH, - - // LAMPS - BlockInit.LAMP_JAR, - BlockInit.LAMP_BAMBOO, - BlockInit.LAMP_LIGHT_BULB, - - // TRELLIS - BlockInit.OAK_TRELLIS, - BlockInit.SPRUCE_TRELLIS, - BlockInit.BIRCH_TRELLIS, - BlockInit.JUNGLE_TRELLIS, - BlockInit.ACACIA_BLINDS, - BlockInit.DARK_OAK_TRELLIS, - BlockInit.MANGROVE_TRELLIS, - BlockInit.CRIMSON_TRELLIS, - BlockInit.CHERRY_TRELLIS, - BlockInit.WARPED_TRELLIS, - - // BLINDS - BlockInit.SPRUCE_BLINDS, - BlockInit.DARK_OAK_BLINDS, - BlockInit.CRIMSON_BLINDS, - BlockInit.CHERRY_BLINDS, - BlockInit.ACACIA_BLINDS, - BlockInit.JUNGLE_BLINDS, - BlockInit.OAK_BLINDS, - BlockInit.BIRCH_BLINDS, - BlockInit.WARPED_BLINDS, - BlockInit.MANGROVE_BLINDS, - BlockInit.IRON_BLINDS, - - // FRAMES - BlockInit.SPRUCE_PICTURE_FRAME, - BlockInit.DARK_OAK_PICTURE_FRAME, - BlockInit.CRIMSON_PICTURE_FRAME, - BlockInit.CHERRY_PICTURE_FRAME, - BlockInit.ACACIA_PICTURE_FRAME, - BlockInit.JUNGLE_PICTURE_FRAME, - BlockInit.OAK_PICTURE_FRAME, - BlockInit.BIRCH_PICTURE_FRAME, - BlockInit.WARPED_PICTURE_FRAME, - BlockInit.MANGROVE_PICTURE_FRAME, - BlockInit.QUARTZ_PICTURE_FRAME); - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/Blinds.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/Blinds.java deleted file mode 100644 index 8fe7005c..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/Blinds.java +++ /dev/null @@ -1,299 +0,0 @@ -package com.github.suel_ki.beautify.common.block; - -import java.util.List; - -import com.github.suel_ki.beautify.Beautify; -import com.github.suel_ki.beautify.core.init.SoundInit; -import net.minecraft.ChatFormatting; -import net.minecraft.client.gui.screens.Screen; -import net.minecraft.core.BlockPos; -import net.minecraft.core.Direction; -import net.minecraft.network.chat.Component; -import net.minecraft.sounds.SoundSource; -import net.minecraft.world.InteractionHand; -import net.minecraft.world.InteractionResult; -import net.minecraft.world.entity.player.Player; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.item.TooltipFlag; -import net.minecraft.world.item.context.BlockPlaceContext; -import net.minecraft.world.level.BlockGetter; -import net.minecraft.world.level.Explosion; -import net.minecraft.world.level.Level; -import net.minecraft.world.level.LevelAccessor; -import net.minecraft.world.level.block.Block; -import net.minecraft.world.level.block.HorizontalDirectionalBlock; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition; -import net.minecraft.world.level.block.state.properties.BooleanProperty; -import net.minecraft.world.phys.BlockHitResult; -import net.minecraft.world.phys.shapes.CollisionContext; -import net.minecraft.world.phys.shapes.Shapes; -import net.minecraft.world.phys.shapes.VoxelShape; - -public class Blinds extends HorizontalDirectionalBlock { - // Voxelshapes; Hidden = Blind not visible - private static final VoxelShape OPEN_NORTH = Block.box(0, 13, 13, 16, 16, 16); - private static final VoxelShape OPEN_SOUTH = Block.box(0, 13, 0, 16, 16, 3); - private static final VoxelShape OPEN_WEST = Block.box(13, 13, 0, 16, 16, 16); - private static final VoxelShape OPEN_EAST = Block.box(0, 13, 0, 3, 16, 16); - private static final VoxelShape CLOSED_SOUTH = Block.box(0, 0, 0, 16, 16, 2); - private static final VoxelShape CLOSED_NORTH = Block.box(0, 0, 13, 16, 16, 16); - private static final VoxelShape CLOSED_EAST = Block.box(0, 0, 0, 3, 16, 16); - private static final VoxelShape CLOSED_WEST = Block.box(13, 0, 0, 16, 16, 16); - private static final VoxelShape SHAPE_HIDDEN = Block.box(0, 0, 0, 0, 0, 0); - // Open = true if blinds are down; Hidden = true if blinds are closed and there - // is a blind above - public static final BooleanProperty OPEN = BooleanProperty.create("open"); - public static final BooleanProperty HIDDEN = BooleanProperty.create("hidden"); - - // constructor - public Blinds(Properties properties) { - super(properties); - this.registerDefaultState(this.defaultBlockState().setValue(OPEN, false).setValue(FACING, Direction.NORTH) - .setValue(HIDDEN, false)); - } - - @Override - public boolean isCollisionShapeFullBlock(BlockState state, BlockGetter level, BlockPos pos) { - return false; - } - - @Override - public VoxelShape getBlockSupportShape(BlockState state, BlockGetter level, BlockPos pos) { - return Shapes.empty(); - } - - @Override - public boolean propagatesSkylightDown(BlockState state, BlockGetter level, BlockPos pos) { - return true; - } - - // check for facing placement, hidden is false per default - @Override - public BlockState getStateForPlacement(BlockPlaceContext context) { - return this.defaultBlockState().setValue(FACING, context.getHorizontalDirection().getOpposite()) - .setValue(OPEN, false).setValue(HIDDEN, false); - } - - // creating blockstates - @Override - protected void createBlockStateDefinition(StateDefinition.Builder builder) { - super.createBlockStateDefinition(builder); - builder.add(OPEN, FACING, HIDDEN); - } - - // INTERACTION - // changes blockstates: - // OPEN: open <-> closed - // HIDDEN: false <-> true if below root - @Override - public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, - BlockHitResult result) { - if (!level.isClientSide() && hand == InteractionHand.MAIN_HAND && player.getItemInHand(hand).isEmpty()) { - // stores last value of blind - final boolean currentlyOpen = state.getValue(OPEN); - - // if the blinds open from the root - // search for the position of the topmost blind and set the pos - if (Beautify.CONFIG.blinds.opensFromRoot) { - int step = 1; - while (sameBlindType(level, pos.above(step), state)) { - ++step; - } - pos = pos.above(step - 1); - } - - { - // changes clicked blind: open <-> closed - level.setBlock(pos, state.setValue(OPEN, !currentlyOpen), 3); - - // CODE BELOW IS DISABLED IF SEARCHRADIUS = 0 - // checks for blinds below clicked blind: open <-> closed, hidden=true - if (Beautify.CONFIG.blinds.searchRadius > 0) { - for (int offsetDown = 1; offsetDown <= Beautify.CONFIG.blinds.searchRadius; ++offsetDown) { - if (sameBlindType(level, pos.below(offsetDown), state)) { - switchOpenUpdateHidden(level, pos.below(offsetDown), state, false); - } else { - break; - } - } - } - - if (Beautify.CONFIG.blinds.searchRadius > 0) { - // FOR BLINDS ON NORTH-SOUTH AXIS - if (state.getValue(FACING) == Direction.NORTH || state.getValue(FACING) == Direction.SOUTH) { - - // checks blinds east of clicked blind - for (int offsetEast = 1; offsetEast <= Beautify.CONFIG.blinds.searchRadius / 2; ++offsetEast) { - if (sameBlindType(level, pos.east(offsetEast), state)) { - // changes east blinds: open <-> closed - level.setBlock(pos.east(offsetEast), state.setValue(OPEN, !currentlyOpen), 3); - // checks for blinds below east blinds: open <-> closed, hidden=true - for (int offsetDown = 1; offsetDown <= Beautify.CONFIG.blinds.searchRadius; ++offsetDown) { - if (sameBlindType(level, pos.below(offsetDown).east(offsetEast), state)) { - switchOpenUpdateHidden(level, pos.below(offsetDown).east(offsetEast), state, - false); - } else { - break; - } - } - } else { - break; - } - } - - // checks blinds west of clicked blind - for (int offsetWest = 1; offsetWest <= Beautify.CONFIG.blinds.searchRadius / 2; ++offsetWest) { - if (sameBlindType(level, pos.west(offsetWest), state)) { - // changes west blinds: open <-> closed - level.setBlock(pos.west(offsetWest), state.setValue(OPEN, !currentlyOpen), 3); - // checks for blinds below west blinds: open <-> closed, hidden=true - for (int offsetDown = 1; offsetDown <= Beautify.CONFIG.blinds.searchRadius; ++offsetDown) { - if (sameBlindType(level, pos.below(offsetDown).west(offsetWest), state)) { - switchOpenUpdateHidden(level, pos.below(offsetDown).west(offsetWest), state, - false); - } else { - break; - } - } - } else { - break; - } - } - } - - // FOR BLINDS ON EAST-WEST AXIS - if (state.getValue(FACING) == Direction.EAST || state.getValue(FACING) == Direction.WEST) { - - // checks blinds north of clicked blind - for (int offsetNorth = 1; offsetNorth <= Beautify.CONFIG.blinds.searchRadius / 2; ++offsetNorth) { - if (sameBlindType(level, pos.north(offsetNorth), state)) { - // changes north blinds: open <-> closed - level.setBlock(pos.north(offsetNorth), state.setValue(OPEN, !currentlyOpen), 3); - // checks for blinds below north blinds: open <-> closed, hidden=true - for (int offsetDown = 1; offsetDown <= Beautify.CONFIG.blinds.searchRadius; ++offsetDown) { - if (sameBlindType(level, pos.below(offsetDown).north(offsetNorth), state)) { - switchOpenUpdateHidden(level, pos.below(offsetDown).north(offsetNorth), - state, false); - } else { - break; - } - } - } else { - break; - } - } - - // checks blinds south of clicked blind - for (int offsetSouth = 1; offsetSouth <= Beautify.CONFIG.blinds.searchRadius / 2; ++offsetSouth) { - if (sameBlindType(level, pos.south(offsetSouth), state)) { - // changes south blinds: open <-> closed - level.setBlock(pos.south(offsetSouth), state.setValue(OPEN, !currentlyOpen), 3); - // checks for blinds below south blinds: open <-> closed, hidden=true - for (int offsetDown = 1; offsetDown <= Beautify.CONFIG.blinds.searchRadius; ++offsetDown) { - if (sameBlindType(level, pos.below(offsetDown).south(offsetSouth), state)) { - switchOpenUpdateHidden(level, pos.below(offsetDown).south(offsetSouth), - state, false); - } else { - break; - } - } - } else { - break; - } - } - } - level.playSound(null, pos, - currentlyOpen ? SoundInit.BLINDS_CLOSE : SoundInit.BLINDS_OPEN, - SoundSource.BLOCKS, 1, 1); - return InteractionResult.SUCCESS; - } - } - } - return InteractionResult.SUCCESS; - } - - // returns: true/false if - // block in level at pos is the same kind of blind - // and facing is the same as state - private boolean sameBlindType(LevelAccessor level, BlockPos pos, BlockState state) { - return level.getBlockState(pos).getBlock() == this.asBlock() - && level.getBlockState(pos).getValue(FACING) == state.getValue(FACING); - } - - // method for changing the blockstates of blinds - // if updateOnly is true, only HIDDEN is changed - // if updateOnly is false, the blind will also open or close - - private void switchOpenUpdateHidden(LevelAccessor level, BlockPos pos, BlockState state, boolean updateOnly) { - if (updateOnly) { - level.setBlock(pos, state.setValue(HIDDEN, false), 3); - return; - } - - if (!state.getValue(OPEN)) { - level.setBlock(pos, state.setValue(OPEN, true).setValue(HIDDEN, false), 3); - } else { - level.setBlock(pos, state.setValue(OPEN, false).setValue(HIDDEN, true), 3); - } - } - - // method to prevent hidden blinds from being unaccessible - // after root block is destroyed. - // updates blind below the destroyed block. - @Override - public void destroy(LevelAccessor level, BlockPos pos, BlockState state) { - if (sameBlindType(level, pos.below(), state)) { - switchOpenUpdateHidden(level, pos.below(), state, true); - } - } - - @Override - public void wasExploded(Level level, BlockPos pos, Explosion explosion) { - BlockState state = level.getBlockState(pos); - if (sameBlindType(level, pos.below(), state)) { - switchOpenUpdateHidden(level, pos.below(), state, true); - } - super.wasExploded(level, pos, explosion); - } - // hidden = invisible model - // OPEN_X = models of blinds that are down - // CLOSED_X= models of blinds that are up - @Override - public VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, CollisionContext context) { - if (state.getValue(HIDDEN)) { - return SHAPE_HIDDEN; - } - - if (!state.getValue(OPEN)) { - return switch (state.getValue(FACING)) { - case NORTH -> OPEN_NORTH; - case SOUTH -> OPEN_SOUTH; - case WEST -> OPEN_WEST; - case EAST -> OPEN_EAST; - default -> OPEN_NORTH; - }; - } - - return switch (state.getValue(FACING)) { - case NORTH -> CLOSED_NORTH; - case SOUTH -> CLOSED_SOUTH; - case WEST -> CLOSED_WEST; - case EAST -> CLOSED_EAST; - default -> CLOSED_NORTH; - }; - } - - @Override - public void appendHoverText(ItemStack stack, BlockGetter level, List component, TooltipFlag flag) { - if (!Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); - } - - if (Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.blinds.1").withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.blinds.2").withStyle(ChatFormatting.GRAY)); - } - super.appendHoverText(stack, level, component, flag); - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/BookStack.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/BookStack.java deleted file mode 100644 index 2c796f56..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/BookStack.java +++ /dev/null @@ -1,147 +0,0 @@ -package com.github.suel_ki.beautify.common.block; - -import java.util.List; -import java.util.Random; - -import com.github.suel_ki.beautify.core.init.SoundInit; -import net.minecraft.ChatFormatting; -import net.minecraft.client.gui.screens.Screen; -import net.minecraft.core.BlockPos; -import net.minecraft.core.Direction; -import net.minecraft.network.chat.Component; -import net.minecraft.server.level.ServerLevel; -import net.minecraft.sounds.SoundSource; -import net.minecraft.util.RandomSource; -import net.minecraft.world.InteractionHand; -import net.minecraft.world.InteractionResult; -import net.minecraft.world.entity.Entity; -import net.minecraft.world.entity.player.Player; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.item.TooltipFlag; -import net.minecraft.world.item.context.BlockPlaceContext; -import net.minecraft.world.level.BlockGetter; -import net.minecraft.world.level.Level; -import net.minecraft.world.level.LevelAccessor; -import net.minecraft.world.level.LevelReader; -import net.minecraft.world.level.block.Block; -import net.minecraft.world.level.block.HorizontalDirectionalBlock; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition; -import net.minecraft.world.level.block.state.properties.IntegerProperty; -import net.minecraft.world.phys.BlockHitResult; -import net.minecraft.world.phys.shapes.CollisionContext; -import net.minecraft.world.phys.shapes.VoxelShape; - -public class BookStack extends HorizontalDirectionalBlock { - private static final int modelcount = 7; // number of models the bookstack has - public static final IntegerProperty BOOKSTACK_MODEL = IntegerProperty.create("bookstack_model", 0, modelcount - 1); - // Different Voxelshapes for models of BOOKSTACK_MODEL - private static final VoxelShape SHAPE0 = Block.box(1, 0, 1, 15, 4, 15); - private static final VoxelShape SHAPE1 = Block.box(1, 0, 1, 15, 4, 15); - private static final VoxelShape SHAPE2 = Block.box(0, 0, 0, 16, 1.5, 16); - private static final VoxelShape SHAPE3 = Block.box(0, 0, 0, 16, 9.5, 16); - private static final VoxelShape SHAPE4 = Block.box(1, 0, 1, 15, 5, 15); - private static final VoxelShape SHAPE5 = Block.box(0.5, 0, 0.5, 15.5, 7.25, 15.5); - private static final VoxelShape SHAPE6 = Block.box(1, 0, 1, 15, 12, 15); - - public BookStack(Properties properties) { - super(properties); - this.registerDefaultState( - this.defaultBlockState().setValue(BOOKSTACK_MODEL, 0).setValue(FACING, Direction.NORTH)); - } - - @Override - public VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, CollisionContext context) { - return switch (state.getValue(BOOKSTACK_MODEL)) { - case 0 -> SHAPE0; - case 1 -> SHAPE1; - case 2 -> SHAPE2; - case 3 -> SHAPE3; - case 4 -> SHAPE4; - case 5 -> SHAPE5; - case 6 -> SHAPE6; - default -> SHAPE0; - }; - } - - @SuppressWarnings("deprecation") - @Override - public BlockState updateShape(BlockState state, Direction direction, BlockState neighborState, LevelAccessor level, - BlockPos currentPos, BlockPos neighborPos) { - if (!state.canSurvive(level, currentPos)) { - level.scheduleTick(currentPos, this, 1); - } - return super.updateShape(state, direction, neighborState, level, currentPos, neighborPos); - } - - @Override - public boolean canSurvive(BlockState state, LevelReader level, BlockPos pos) { - return canSupportRigidBlock(level, pos.below()); - } - - - @Override - public void tick(BlockState state, ServerLevel level, BlockPos pos, RandomSource rand) { - if (!state.canSurvive(level, pos)) { - level.destroyBlock(pos, true); - } - } - - // changing the model of the bookstack by shift-rightclicking - @Override - public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, - BlockHitResult result) { - if (!level.isClientSide() && hand == InteractionHand.MAIN_HAND && player.getItemInHand(hand).isEmpty() - && player.isShiftKeyDown()) { - int currentModel = state.getValue(BOOKSTACK_MODEL); // current index - level.playSound(null, pos, SoundInit.BOOKSTACK_NEXT, SoundSource.BLOCKS, 1, 1); - // reset if it surpasses the number of possible models - if (currentModel + 1 > modelcount - 1) { - level.setBlock(pos, state.setValue(BOOKSTACK_MODEL, 0), 3); - } else { // increases index - level.setBlock(pos, state.setValue(BOOKSTACK_MODEL, currentModel + 1), 3); - } - return InteractionResult.SUCCESS; - } - return InteractionResult.SUCCESS; - } - - @Override - public void fallOn(Level level, BlockState state, BlockPos pos, Entity entity, float fallDistance) { - level.playSound(null, pos, SoundInit.BOOKSTACK_FALL, SoundSource.BLOCKS, 1, 1); - super.fallOn(level, state, pos, entity, fallDistance); - } - - @Override - public BlockState getStateForPlacement(BlockPlaceContext context) { - final int min = 0; - final int max = modelcount; - Random rand = new Random(); - int randomNum = rand.nextInt((max - min)); - - return this.defaultBlockState().setValue(FACING, context.getHorizontalDirection().getOpposite()) - .setValue(BOOKSTACK_MODEL, randomNum); - } - - // creates blockstate - @Override - protected void createBlockStateDefinition(StateDefinition.Builder builder) { - super.createBlockStateDefinition(builder); - builder.add(BOOKSTACK_MODEL, FACING); - } - - @Override - public void appendHoverText(ItemStack stack, BlockGetter getter, List component, TooltipFlag flag) { - if (!Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); - } - - if (Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.bookstack.1") - .withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.bookstack.2") - .withStyle(ChatFormatting.GRAY)); - } - super.appendHoverText(stack, getter, component, flag); - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/BotanistWorkbench.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/BotanistWorkbench.java deleted file mode 100644 index eb73ac14..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/BotanistWorkbench.java +++ /dev/null @@ -1,72 +0,0 @@ -package com.github.suel_ki.beautify.common.block; - -import java.util.List; - -import net.minecraft.ChatFormatting; -import net.minecraft.client.gui.screens.Screen; -import net.minecraft.core.BlockPos; -import net.minecraft.core.Direction; -import net.minecraft.network.chat.Component; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.item.TooltipFlag; -import net.minecraft.world.item.context.BlockPlaceContext; -import net.minecraft.world.level.BlockGetter; -import net.minecraft.world.level.block.Block; -import net.minecraft.world.level.block.HorizontalDirectionalBlock; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition; -import net.minecraft.world.phys.shapes.CollisionContext; -import net.minecraft.world.phys.shapes.Shapes; -import net.minecraft.world.phys.shapes.VoxelShape; - -public class BotanistWorkbench extends HorizontalDirectionalBlock { - - private static final VoxelShape SHAPE_NORTH = Shapes.or(box(2, 0, 0, 16, 12, 14.25), - box(9.5, 12, 8.5, 13.5, 16, 12.5)); - private static final VoxelShape SHAPE_SOUTH = Shapes.or(box(0, 0, 1.75, 14, 12, 16), - box(2.5, 12, 3.5, 6.5, 16, 7.5)); - private static final VoxelShape SHAPE_EAST = Shapes.or(box(1.75, 0, 2, 16, 12, 16), - box(3.5, 12, 9.5, 7.5, 16, 13.5)); - private static final VoxelShape SHAPE_WEST = Shapes.or(box(0, 0, 0, 14.25, 12, 14), - box(8.5, 12, 2.5, 12.5, 16, 6.5)); - - public BotanistWorkbench(Properties properties) { - super(properties); - this.registerDefaultState(this.defaultBlockState().setValue(FACING, Direction.NORTH)); - } - - @Override - public BlockState getStateForPlacement(BlockPlaceContext context) { - return this.defaultBlockState().setValue(FACING, context.getHorizontalDirection().getOpposite()); - } - - @Override - public VoxelShape getShape(BlockState state, BlockGetter getter, BlockPos pos, CollisionContext context) { - return switch (state.getValue(FACING)) { - case NORTH -> SHAPE_NORTH; - case SOUTH -> SHAPE_SOUTH; - case EAST -> SHAPE_EAST; - case WEST -> SHAPE_WEST; - default -> SHAPE_NORTH; - }; - } - - @Override - protected void createBlockStateDefinition(StateDefinition.Builder pBuilder) { - super.createBlockStateDefinition(pBuilder); - pBuilder.add(FACING); - } - - @Override - public void appendHoverText(ItemStack stack, BlockGetter getter, List component, TooltipFlag flag) { - if (!Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); - } - - if (Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.botanist_workbench.1") - .withStyle(ChatFormatting.GRAY)); - } - super.appendHoverText(stack, getter, component, flag); - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/HangingPot.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/HangingPot.java deleted file mode 100644 index b0a5c919..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/HangingPot.java +++ /dev/null @@ -1,206 +0,0 @@ -package com.github.suel_ki.beautify.common.block; - -import java.util.Arrays; -import java.util.List; - -import net.minecraft.ChatFormatting; -import net.minecraft.client.gui.screens.Screen; -import net.minecraft.core.BlockPos; -import net.minecraft.core.Direction; -import net.minecraft.network.chat.Component; -import net.minecraft.sounds.SoundEvents; -import net.minecraft.sounds.SoundSource; -import net.minecraft.stats.Stats; -import net.minecraft.world.InteractionHand; -import net.minecraft.world.InteractionResult; -import net.minecraft.world.entity.item.ItemEntity; -import net.minecraft.world.entity.player.Player; -import net.minecraft.world.item.Item; -import net.minecraft.world.item.Items; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.item.ShearsItem; -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.LanternBlock; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition; -import net.minecraft.world.level.block.state.properties.BooleanProperty; -import net.minecraft.world.level.block.state.properties.IntegerProperty; -import net.minecraft.world.phys.BlockHitResult; -import net.minecraft.world.phys.shapes.CollisionContext; -import net.minecraft.world.phys.shapes.Shapes; -import net.minecraft.world.phys.shapes.VoxelShape; - -public class HangingPot extends LanternBlock { - private static final List validFlowers = Arrays.asList(Items.AIR, Items.ROSE_BUSH, Items.LILAC, - Items.BLUE_ORCHID, Items.VINE, Items.SUNFLOWER, Items.PEONY, Items.AZURE_BLUET, Items.RED_TULIP, - Items.ORANGE_TULIP, Items.WHITE_TULIP, Items.PINK_TULIP, Items.ALLIUM, Items.DANDELION, Items.POPPY, - Items.GLOW_LICHEN, Items.OXEYE_DAISY, Items.LILY_OF_THE_VALLEY, Items.CORNFLOWER, Items.WEEPING_VINES, - Items.TWISTING_VINES, Items.WITHER_ROSE, Items.GLOW_BERRIES, Items.SWEET_BERRIES, Items.GRASS, Items.FERN); - - // POTFLOWER indicates which index of the flowers List below is active - public static final IntegerProperty POTFLOWER = IntegerProperty.create("potflower", 0, validFlowers.size() - 1); - - public static final BooleanProperty GROWN = BooleanProperty.create("grown"); - - public HangingPot(Properties properties) { - super(properties); - this.registerDefaultState(this.defaultBlockState().setValue(POTFLOWER, 0).setValue(GROWN, false)); - } - - // hitbox for the HangingPot - private static final VoxelShape HANGING_SHAPE = Shapes.or(box(5, 0, 5, 11, 4, 11), - box(3.75, 4, 3.75, 12.25, 8, 12.25), box(5, 8, 5, 11, 16, 11)); - private static final VoxelShape STANDING_SHAPE = Shapes.or(box(5, 0, 5, 11, 5, 11), box(4, 5, 4, 12, 8, 12)); - - public List getValidFlowers() { - return validFlowers; - } - - @Override - public VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, CollisionContext context) { - if (state.getValue(HANGING)) { - return HANGING_SHAPE; - } - return STANDING_SHAPE; - } - - @SuppressWarnings("deprecation") - @Override - public void neighborChanged(BlockState state, Level level, BlockPos pos, Block block, - BlockPos blockPos, boolean bool) { - if (state.getValue(GROWN)) { //if the plant is grown long - if (blockPos.equals(pos.below()) - && level.getBlockState(pos.below()).isFaceSturdy(level, pos.below(), Direction.UP)) { //if the neighbour is a model that clips into the pot - level.setBlock(pos, state.setValue(GROWN, false), 3); - ItemEntity Item = new ItemEntity(level, pos.getX(), pos.getY(), pos.getZ(), - new ItemStack(validFlowers.get(state.getValue(POTFLOWER)))); - level.addFreshEntity(Item); - level.playSound(null, pos, SoundEvents.HANGING_ROOTS_BREAK, SoundSource.BLOCKS, 1, 1); - } - } - super.neighborChanged(state, level, pos, block, blockPos, bool); - } - - @Override - public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, - BlockHitResult result) { - - if (!level.isClientSide() && hand == InteractionHand.MAIN_HAND) { - ItemStack playerStack = player.getItemInHand(hand); // saving ItemStack - - // growing plant - // block below must not be sturdy to prevent clipping models - if (playerStack.getItem().equals(Items.BONE_MEAL) && state.getValue(POTFLOWER) != 0 - /*&& !level.getBlockState(pos.below()).isFaceSturdy(level, pos.below(), Direction.UP)*/) { - if (!state.getValue(GROWN)) { - level.levelEvent(1505, result.getBlockPos(), 0); - //level.playSound(null, pos, SoundEvents.BONE_MEAL_USE, SoundSource.BLOCKS, 1, 1); - if (!player.getAbilities().instabuild) { - playerStack.shrink(1); - } - level.setBlock(pos, state.setValue(GROWN, true), 3); - return InteractionResult.SUCCESS; - } - } - - // when plant is grown -> using shears cuts it down - if (playerStack.getItem() instanceof ShearsItem && state.getValue(POTFLOWER) != 0 - && state.getValue(GROWN)) { - level.playSound(null, pos, SoundEvents.SHEEP_SHEAR, SoundSource.BLOCKS, 1, 1); - level.setBlock(pos, state.setValue(GROWN, false), 3); - ItemEntity Item = new ItemEntity(level, pos.getX(), pos.getY(), pos.getZ(), - new ItemStack(validFlowers.get(state.getValue(POTFLOWER)))); - level.addFreshEntity(Item); - return InteractionResult.SUCCESS; - } - - // if there is a flower - if (state.getValue(POTFLOWER) != 0) { - // giving flower and clearing pot if hand empty - if (playerStack.isEmpty()) { - player.setItemInHand(hand, new ItemStack(validFlowers.get(state.getValue(POTFLOWER)), - state.getValue(GROWN) ? 2 : 1)); // giving 1 or 2 of plant (grown or not) - level.setBlock(pos, state.setValue(POTFLOWER, 0).setValue(GROWN, false), 3); // emptying the pot - level.playSound(null, pos, SoundEvents.COMPOSTER_READY, SoundSource.BLOCKS, 1, 1); - return InteractionResult.SUCCESS; - } else if (playerStack.is(validFlowers.get(state.getValue(POTFLOWER))) - && playerStack.getCount() < playerStack.getMaxStackSize()) { - playerStack.grow(state.getValue(GROWN) ? 2 : 1); // giving 1 or 2 of plant (grown or not) - level.setBlock(pos, state.setValue(POTFLOWER, 0).setValue(GROWN, false), 3); - level.playSound(null, pos, SoundEvents.AZALEA_LEAVES_BREAK, SoundSource.BLOCKS, 1, 1); - return InteractionResult.SUCCESS; - } - - // else just return - } else { // if there is no flower - - // checks if the flower in hand matches the available types - for (Item flower : validFlowers) { - if (playerStack.getItem().equals(flower)) { - level.setBlock(pos, state.setValue(POTFLOWER, validFlowers.indexOf(flower)), 3); - player.awardStat(Stats.POT_FLOWER); - if (!flower.equals(Items.AIR)) { - level.playSound(null, pos, SoundEvents.AZALEA_PLACE, SoundSource.BLOCKS, 1, 1); - } - if (!player.getAbilities().instabuild) { - playerStack.shrink(1); - } - return InteractionResult.SUCCESS; - } - } - // if the flower is not a valid one - } - return InteractionResult.CONSUME; - } - // end of statement - return InteractionResult.CONSUME; - } - - @Override - public ItemStack getCloneItemStack(BlockGetter level, BlockPos pos, BlockState state) { - return this.isEmpty(state) ? super.getCloneItemStack(level, pos, state) : new ItemStack(getContent(state)); - } - - private boolean isEmpty(BlockState state) { - return state.getValue(POTFLOWER) == 0; - } - - public Block getContent(BlockState state) { - return Block.byItem(validFlowers.get(state.getValue(POTFLOWER))); - } - - // creating Blockstates - @Override - protected void createBlockStateDefinition(StateDefinition.Builder pBuilder) { - super.createBlockStateDefinition(pBuilder); - pBuilder.add(POTFLOWER, GROWN); - } - - @Override - public void appendHoverText(ItemStack stack, BlockGetter getter, List component, TooltipFlag flag) { - if (!Screen.hasShiftDown() && !Screen.hasControlDown()) { - component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); - component.add(Component.translatable("tooltip.beautify.plantlist").withStyle(ChatFormatting.YELLOW)); - } - - if (Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.hanging_pot.1") - .withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.hanging_pot.2"). - withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.hanging_pot.3") - .withStyle(ChatFormatting.GRAY)); - } - - if (Screen.hasControlDown()) { - component.add(Component.translatable("tooltip.beautify.hanging_pot.plant_header").withStyle(ChatFormatting.UNDERLINE) - .withStyle(ChatFormatting.BOLD).withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.hanging_pot.plants") - .withStyle(ChatFormatting.GRAY)); - } - super.appendHoverText(stack, getter, component, flag); - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/LampBamboo.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/LampBamboo.java deleted file mode 100644 index cf76ed6c..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/LampBamboo.java +++ /dev/null @@ -1,79 +0,0 @@ -package com.github.suel_ki.beautify.common.block; - -import java.util.List; - -import net.minecraft.ChatFormatting; -import net.minecraft.client.gui.screens.Screen; -import net.minecraft.core.BlockPos; -import net.minecraft.network.chat.Component; -import net.minecraft.sounds.SoundEvents; -import net.minecraft.sounds.SoundSource; -import net.minecraft.world.InteractionHand; -import net.minecraft.world.InteractionResult; -import net.minecraft.world.entity.player.Player; -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.LanternBlock; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition; -import net.minecraft.world.level.block.state.properties.BooleanProperty; -import net.minecraft.world.phys.BlockHitResult; -import net.minecraft.world.phys.shapes.CollisionContext; -import net.minecraft.world.phys.shapes.VoxelShape; - -public class LampBamboo extends LanternBlock { - public static final BooleanProperty ON = BooleanProperty.create("on"); - - private static final VoxelShape SHAPE_HANGING = Block.box(2, 1, 2, 14, 12, 14); - private static final VoxelShape SHAPE_STANDING = Block.box(4, 0, 4, 12, 13, 12); - - public LampBamboo(Properties properties) { - super(properties); - this.registerDefaultState(this.defaultBlockState().setValue(ON, true)); - } - - @Override - public VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, - CollisionContext context) { - if (state.getValue(HANGING)) { - return SHAPE_HANGING; - } - return SHAPE_STANDING; - } - - @Override - public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, - BlockHitResult result) { - if (!level.isClientSide() && hand == InteractionHand.MAIN_HAND && player.getItemInHand(hand).isEmpty()) { - level.setBlock(pos, state.setValue(ON, !state.getValue(ON)), 3); - float f = state.getValue(ON) ? 0.5F : 0.6F; - level.playSound(null, pos, SoundEvents.LEVER_CLICK, SoundSource.BLOCKS, 0.25F, f); - } - - return InteractionResult.SUCCESS; - } - - @Override - protected void createBlockStateDefinition(StateDefinition.Builder pBuilder) { - super.createBlockStateDefinition(pBuilder); - pBuilder.add(ON); - } - - @Override - public void appendHoverText(ItemStack stack, BlockGetter getter, List component, TooltipFlag flag) { - if (!Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); - } - - if (Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.lamp.1") - .withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.lamp.2") - .withStyle(ChatFormatting.GRAY)); - } - super.appendHoverText(stack, getter, component, flag); - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/LampCandleabra.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/LampCandleabra.java deleted file mode 100644 index 517b6e7a..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/LampCandleabra.java +++ /dev/null @@ -1,149 +0,0 @@ -package com.github.suel_ki.beautify.common.block; - -import java.util.List; - -import net.fabricmc.api.EnvType; -import net.fabricmc.api.Environment; -import net.minecraft.ChatFormatting; -import net.minecraft.client.gui.screens.Screen; -import net.minecraft.core.BlockPos; -import net.minecraft.core.Direction; -import net.minecraft.core.particles.ParticleTypes; -import net.minecraft.network.chat.Component; -import net.minecraft.sounds.SoundEvents; -import net.minecraft.sounds.SoundSource; -import net.minecraft.util.RandomSource; -import net.minecraft.world.InteractionHand; -import net.minecraft.world.InteractionResult; -import net.minecraft.world.entity.player.Player; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.item.Items; -import net.minecraft.world.item.TooltipFlag; -import net.minecraft.world.item.context.BlockPlaceContext; -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.LanternBlock; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition; -import net.minecraft.world.level.block.state.properties.BlockStateProperties; -import net.minecraft.world.level.block.state.properties.BooleanProperty; -import net.minecraft.world.level.block.state.properties.DirectionProperty; -import net.minecraft.world.level.material.FluidState; -import net.minecraft.world.level.material.Fluids; -import net.minecraft.world.phys.BlockHitResult; -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; - -public class LampCandleabra extends LanternBlock { - public static final BooleanProperty ON = BooleanProperty.create("on"); - public static final DirectionProperty FACING = BlockStateProperties.HORIZONTAL_FACING; - - private static final VoxelShape SHAPE_HANGING = Shapes.join(Block.box(0, 2, 6.5, 16, 16, 9.5), Block.box(6.5, 2, 0, 9.5, 16, 16), BooleanOp.OR); - private static final VoxelShape SHAPE_STANDING = Block.box(4, 0, 4, 12, 13, 12); - - public LampCandleabra(Properties properties) { - super(properties); - this.registerDefaultState(this.defaultBlockState().setValue(ON, false).setValue(FACING, Direction.NORTH)); - } - - @Override - public BlockState getStateForPlacement(BlockPlaceContext context) { - FluidState fluidstate = context.getLevel().getFluidState(context.getClickedPos()); - - for (Direction direction : context.getNearestLookingDirections()) { - if (direction.getAxis() == Direction.Axis.Y) { - BlockState blockstate = this.defaultBlockState().setValue(HANGING, - direction == Direction.UP); - if (blockstate.canSurvive(context.getLevel(), context.getClickedPos())) { - return blockstate.setValue(WATERLOGGED, fluidstate.getType() == Fluids.WATER) - .setValue(FACING, context.getHorizontalDirection().getOpposite()) - .setValue(ON, false); - } - } - } - return null; - } - - @Override - public VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, - CollisionContext context) { - if (state.getValue(HANGING)) { - return SHAPE_HANGING; - } - return SHAPE_STANDING; - } - - @Override - public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, - BlockHitResult result) { - if (!level.isClientSide() && hand == InteractionHand.MAIN_HAND) { - // Ignite/Extinguish - if (state.getValue(WATERLOGGED)) { - return InteractionResult.PASS; - } - if (state.getValue(ON) && !player.isShiftKeyDown() && player.getItemInHand(hand).isEmpty()) { - level.setBlock(pos, state.setValue(ON, !state.getValue(ON)), 3); - level.playSound(null, pos, SoundEvents.CANDLE_EXTINGUISH, SoundSource.BLOCKS, 0.5F, 0.5f); - return InteractionResult.SUCCESS; - } else if (!state.getValue(ON) && player.getItemInHand(hand).is(Items.FLINT_AND_STEEL)) { - level.setBlock(pos, state.setValue(ON, !state.getValue(ON)), 3); - level.playSound(null, pos, SoundEvents.FLINTANDSTEEL_USE, SoundSource.BLOCKS, 0.5F, 1f); - return InteractionResult.SUCCESS; - } - } - return InteractionResult.SUCCESS; - } - - @Environment(EnvType.CLIENT) - @Override - public void animateTick(BlockState state, Level level, BlockPos pos, RandomSource rand) { - double d0 = (double) pos.getX() + 0.5D; - double d1 = (double) pos.getY() + 1D; - double d2 = (double) pos.getZ() + 0.5D; - - if (state.getValue(ON)) { - if (state.getValue(HANGING)) { - level.addParticle(ParticleTypes.SMALL_FLAME, d0 + 0.4, d1 - 0.15, d2, 0.0D, 0.0D, 0.0D); - level.addParticle(ParticleTypes.SMALL_FLAME, d0 - 0.4, d1 - 0.15, d2, 0.0D, 0.0D, 0.0D); - level.addParticle(ParticleTypes.SMALL_FLAME, d0, d1 - 0.15, d2 + 0.4, 0.0D, 0.0D, 0.0D); - level.addParticle(ParticleTypes.SMALL_FLAME, d0, d1 - 0.15, d2 - 0.4, 0.0D, 0.0D, 0.0D); - } else { - if (state.getValue(FACING) == Direction.EAST || state.getValue(FACING) == Direction.WEST) { - level.addParticle(ParticleTypes.SMALL_FLAME, d0, d1, d2, 0.0D, 0.0D, 0.0D); - level.addParticle(ParticleTypes.SMALL_FLAME, d0, d1 + 0.05, d2 + 0.35, 0.0D, 0.0D, 0.0D); - level.addParticle(ParticleTypes.SMALL_FLAME, d0, d1 + 0.05, d2 - 0.35, 0.0D, 0.0D, 0.0D); - } else { - level.addParticle(ParticleTypes.SMALL_FLAME, d0, d1, d2, 0.0D, 0.0D, 0.0D); - level.addParticle(ParticleTypes.SMALL_FLAME, d0 + 0.35, d1 + 0.05, d2, 0.0D, 0.0D, 0.0D); - level.addParticle(ParticleTypes.SMALL_FLAME, d0 - 0.35, d1 + 0.05, d2, 0.0D, 0.0D, 0.0D); - } - } - } - } - - @Override - protected void createBlockStateDefinition(StateDefinition.Builder builder) { - super.createBlockStateDefinition(builder); - builder.add(FACING, ON); - } - - @Override - public void appendHoverText(ItemStack stack, BlockGetter level, List component, TooltipFlag flag) { - if (!Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); - } - - if (Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.candelabra.1") - .withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.candelabra.2") - .withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.candelabra.3") - .withStyle(ChatFormatting.GRAY)); - } - super.appendHoverText(stack, level, component, flag); - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/LampJar.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/LampJar.java deleted file mode 100644 index ab69834f..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/LampJar.java +++ /dev/null @@ -1,140 +0,0 @@ -package com.github.suel_ki.beautify.common.block; - -import java.util.List; - -import com.github.suel_ki.beautify.particle.ParticleInit; -import net.fabricmc.api.EnvType; -import net.fabricmc.api.Environment; -import net.minecraft.ChatFormatting; -import net.minecraft.client.gui.screens.Screen; -import net.minecraft.core.BlockPos; -import net.minecraft.core.particles.ParticleTypes; -import net.minecraft.network.chat.Component; -import net.minecraft.sounds.SoundEvents; -import net.minecraft.sounds.SoundSource; -import net.minecraft.util.RandomSource; -import net.minecraft.world.InteractionHand; -import net.minecraft.world.InteractionResult; -import net.minecraft.world.entity.player.Player; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.item.Items; -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.LanternBlock; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition; -import net.minecraft.world.level.block.state.properties.IntegerProperty; -import net.minecraft.world.phys.BlockHitResult; - -public class LampJar extends LanternBlock { - private static final int maxLevel = 15; - public static final IntegerProperty FILL_LEVEL = IntegerProperty.create("fill_level", 0, maxLevel); - - public LampJar(Properties p_153465_) { - super(p_153465_); - this.registerDefaultState(this.defaultBlockState().setValue(FILL_LEVEL, 0)); - } - - // Fill - @Override - public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, - BlockHitResult result) { - if (!level.isClientSide() && hand == InteractionHand.MAIN_HAND) { - - ItemStack playerStack = player.getItemInHand(hand); - - final int increase = 5; - final int currentLevel = state.getValue(FILL_LEVEL); - - // decreasing - if (playerStack.isEmpty() && currentLevel > 0) { - player.setItemInHand(hand, new ItemStack(Items.GLOWSTONE_DUST, currentLevel / increase)); - level.setBlock(pos, state.setValue(FILL_LEVEL, 0), 3); - level.playSound(null, pos, SoundEvents.AMETHYST_CLUSTER_BREAK, SoundSource.BLOCKS, 0.5F, - 0.5f); - return InteractionResult.SUCCESS; - } - - // increasing - if (playerStack.is(Items.GLOWSTONE_DUST) && currentLevel + increase <= maxLevel) { - playerStack.shrink(1); - level.setBlock(pos, state.setValue(FILL_LEVEL, currentLevel + increase), 3); - level.playSound(null, pos, SoundEvents.AMETHYST_BLOCK_HIT, SoundSource.BLOCKS, 0.5F, 0.5f); - return InteractionResult.SUCCESS; - } - } - return InteractionResult.SUCCESS; - } - - @Override - protected void createBlockStateDefinition(StateDefinition.Builder builder) { - super.createBlockStateDefinition(builder); - builder.add(FILL_LEVEL); - } - - @Environment(EnvType.CLIENT) - @Override - public void animateTick(BlockState state, Level level, BlockPos pos, RandomSource rand) { - final int particleProbability = 5; - - double posX = (pos.getX() + 0.35) + rand.nextDouble() / 3.5; - double posY = (pos.getY() + 0.1) + rand.nextDouble() / 3.5; - double posZ = (pos.getZ() + 0.35) + rand.nextDouble() / 3.5; - - if (state.getValue(FILL_LEVEL) >= 5 && state.getValue(FILL_LEVEL) < 10) { - if (rand.nextBoolean()) { - level.addParticle( - ParticleInit.GLOWESSENCE_PARTICLES, posX, posY, posZ, randomDir(rand), 0.01d, randomDir(rand)); - } - } else if (state.getValue(FILL_LEVEL) >= 10 && state.getValue(FILL_LEVEL) < 15) { - if (rand.nextBoolean()) { - level.addParticle( - ParticleInit.GLOWESSENCE_PARTICLES, posX, posY, posZ, randomDir(rand), 0.01, randomDir(rand)); - } - } else if (state.getValue(FILL_LEVEL) == 15) { - if (rand.nextBoolean()) { - level.addParticle( - ParticleInit.GLOWESSENCE_PARTICLES, posX, posY, posZ, randomDir(rand), 0.01, randomDir(rand)); - } - posX = (pos.getX() + 0.35) + rand.nextDouble() / 3.5; - posY = (pos.getY() + 0.1) + rand.nextDouble() / 3.5; - posZ = (pos.getZ() + 0.35) + rand.nextDouble() / 3.5; - level.addParticle(ParticleInit.GLOWESSENCE_PARTICLES, posX, posY, posZ, randomDir(rand), 0.01, randomDir(rand)); - } - - /*if (state.getValue(FILL_LEVEL) >= 5 && state.getValue(FILL_LEVEL) < 10) { - if (rand.nextInt(particleProbability) == 0) { - level.addParticle(ParticleTypes.END_ROD, posX, posY, posZ, randomDir(rand), 0.01, randomDir(rand)); - } - } else if (state.getValue(FILL_LEVEL) >= 10 && state.getValue(FILL_LEVEL) < 15) { - if (rand.nextInt(particleProbability) == 0) { - level.addParticle(ParticleTypes.END_ROD, posX, posY, posZ, randomDir(rand), 0.01, randomDir(rand)); - } - } else if (state.getValue(FILL_LEVEL) == 15) { - posX = (pos.getX() + 0.35) + rand.nextDouble() / 3.5; - posY = (pos.getY() + 0.1) + rand.nextDouble() / 3.5; - posZ = (pos.getZ() + 0.35) + rand.nextDouble() / 3.5; - level.addParticle(ParticleTypes.END_ROD, posX, posY, posZ, randomDir(rand), 0.01, randomDir(rand)); - }*/ - } - - private static double randomDir(RandomSource rand) { - return (rand.nextIntBetweenInclusive(0, 2) - 1) * rand.nextFloat() / 34; - } - - @Override - public void appendHoverText(ItemStack stack, BlockGetter level, List component, TooltipFlag flag) { - if (!Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); - } - - if (Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.lamp_jar.1").withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.lamp_jar.2").withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.lamp_jar.3").withStyle(ChatFormatting.GRAY)); - } - super.appendHoverText(stack, level, component, flag); - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/LampLightBulb.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/LampLightBulb.java deleted file mode 100644 index 02c1b0e2..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/LampLightBulb.java +++ /dev/null @@ -1,99 +0,0 @@ -package com.github.suel_ki.beautify.common.block; - -import java.util.List; - -import net.fabricmc.api.EnvType; -import net.fabricmc.api.Environment; -import net.minecraft.ChatFormatting; -import net.minecraft.client.gui.screens.Screen; -import net.minecraft.core.BlockPos; -import net.minecraft.core.particles.ParticleTypes; -import net.minecraft.network.chat.Component; -import net.minecraft.sounds.SoundEvents; -import net.minecraft.sounds.SoundSource; -import net.minecraft.util.RandomSource; -import net.minecraft.world.InteractionHand; -import net.minecraft.world.InteractionResult; -import net.minecraft.world.entity.player.Player; -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.LanternBlock; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition; -import net.minecraft.world.level.block.state.properties.BooleanProperty; -import net.minecraft.world.phys.BlockHitResult; -import net.minecraft.world.phys.shapes.CollisionContext; -import net.minecraft.world.phys.shapes.VoxelShape; - -public class LampLightBulb extends LanternBlock { - public static final BooleanProperty ON = BooleanProperty.create("on"); - - private static final VoxelShape SHAPE_HANGING = Block.box(5, 3, 5, 11, 16, 11); - private static final VoxelShape SHAPE_STANDING = Block.box(4, 0, 4, 12, 13, 12); - - public LampLightBulb(Properties properties) { - super(properties); - this.registerDefaultState(this.defaultBlockState().setValue(ON, true)); - } - - @Override - public VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, - CollisionContext context) { - if (state.getValue(HANGING)) { - return SHAPE_HANGING; - } - return SHAPE_STANDING; - } - - @Override - public InteractionResult use(BlockState state, Level pLevel, BlockPos pos, Player player, InteractionHand hand, - BlockHitResult result) { - if (!pLevel.isClientSide() && hand == InteractionHand.MAIN_HAND && player.getItemInHand(hand).isEmpty()) { - pLevel.setBlock(pos, state.setValue(ON, !state.getValue(ON)), 3); - float f = state.getValue(ON) ? 0.5F : 0.6F; - pLevel.playSound(null, pos, SoundEvents.LEVER_CLICK, SoundSource.BLOCKS, 0.25F, f); - } - - return InteractionResult.SUCCESS; - } - - @Environment(EnvType.CLIENT) - @Override - public void animateTick(BlockState state, Level level, BlockPos pos, RandomSource rand) { - double d0 = (double) pos.getX() + 0.5D; - double d1 = (double) pos.getY() + 0.7D; - double d2 = (double) pos.getZ() + 0.5D; - - if (rand.nextBoolean() && state.getValue(ON)) { - if (state.getValue(HANGING)) { - level.addParticle(ParticleTypes.SMOKE, d0, d1 - 0.3, d2, 0.0D, 0.0D, 0.0D); - } else { - level.addParticle(ParticleTypes.SMOKE, d0, d1, d2, 0.0D, 0.0D, 0.0D); - } - } - } - - @Override - protected void createBlockStateDefinition(StateDefinition.Builder builder) { - super.createBlockStateDefinition(builder); - builder.add(ON); - } - - @Override - public void appendHoverText(ItemStack stack, BlockGetter level, List component, TooltipFlag flag) { - if (!Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); - } - - if (Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.lamp.1") - .withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.lamp.2") - .withStyle(ChatFormatting.GRAY)); - } - super.appendHoverText(stack, level, component, flag); - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/PictureFrame.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/PictureFrame.java deleted file mode 100644 index 58f34b64..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/PictureFrame.java +++ /dev/null @@ -1,103 +0,0 @@ -package com.github.suel_ki.beautify.common.block; - -import java.util.List; -import java.util.Random; - -import net.minecraft.ChatFormatting; -import net.minecraft.client.gui.screens.Screen; -import net.minecraft.core.BlockPos; -import net.minecraft.core.Direction; -import net.minecraft.network.chat.Component; -import net.minecraft.sounds.SoundEvents; -import net.minecraft.sounds.SoundSource; -import net.minecraft.world.InteractionHand; -import net.minecraft.world.InteractionResult; -import net.minecraft.world.entity.player.Player; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.item.TooltipFlag; -import net.minecraft.world.item.context.BlockPlaceContext; -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.HorizontalDirectionalBlock; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition; -import net.minecraft.world.level.block.state.properties.IntegerProperty; -import net.minecraft.world.phys.BlockHitResult; -import net.minecraft.world.phys.shapes.CollisionContext; -import net.minecraft.world.phys.shapes.Shapes; -import net.minecraft.world.phys.shapes.VoxelShape; - -public class PictureFrame extends HorizontalDirectionalBlock { - private static final int modelcount = 13; // number of models the frame has - public static final IntegerProperty FRAME_MOTIVE = IntegerProperty.create("frame_motive", 0, modelcount - 1); - protected static final VoxelShape SHAPE = Block.box(5, 0, 5, 11, 8, 11); - - public PictureFrame(Properties properties) { - super(properties); - this.registerDefaultState(this.defaultBlockState().setValue(FRAME_MOTIVE, 0).setValue(FACING, Direction.NORTH)); - } - - // changing the model of the picture frame by shift-rightclicking - @Override - public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, - BlockHitResult result) { - if (!level.isClientSide() && hand == InteractionHand.MAIN_HAND && player.getItemInHand(hand).isEmpty() - && player.isShiftKeyDown()) { - int currentModel = state.getValue(FRAME_MOTIVE); // current index - // reset if it surpasses the number of possible models - if (currentModel + 1 > modelcount - 1) { - level.setBlock(pos, state.setValue(FRAME_MOTIVE, 0), 3); - } else { // increases index - level.setBlock(pos, state.setValue(FRAME_MOTIVE, currentModel + 1), 3); - } - level.playSound(null, pos, SoundEvents.PAINTING_PLACE, SoundSource.BLOCKS, 1, 1); - return InteractionResult.SUCCESS; - } - return InteractionResult.SUCCESS; - } - - @Override - public VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, - CollisionContext context) { - return SHAPE; - } - - @Override - public VoxelShape getOcclusionShape(BlockState state, BlockGetter level, BlockPos pos) { - return Shapes.empty(); - } - - @Override - public BlockState getStateForPlacement(BlockPlaceContext context) { - final int min = 0; - final int max = modelcount; - Random rand = new Random(); - int randomNum = rand.nextInt((max - min)); - - return this.defaultBlockState().setValue(FACING, context.getHorizontalDirection().getOpposite()) - .setValue(FRAME_MOTIVE, randomNum); - } - - // creates blockstate - @Override - protected void createBlockStateDefinition(StateDefinition.Builder builder) { - super.createBlockStateDefinition(builder); - builder.add(FRAME_MOTIVE, FACING); - } - - @Override - public void appendHoverText(ItemStack stack, BlockGetter level, List component, TooltipFlag flag) { - if (!Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); - } - - if (Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.picture_frame.1") - .withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.picture_frame.2") - .withStyle(ChatFormatting.GRAY)); - } - super.appendHoverText(stack, level, component, flag); - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/Rope.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/Rope.java deleted file mode 100644 index 6358db39..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/Rope.java +++ /dev/null @@ -1,43 +0,0 @@ -package com.github.suel_ki.beautify.common.block; - -import java.util.List; - -import com.github.suel_ki.beautify.core.init.BlockInit; -import net.minecraft.ChatFormatting; -import net.minecraft.client.gui.screens.Screen; -import net.minecraft.core.BlockPos; -import net.minecraft.core.Direction; -import net.minecraft.network.chat.Component; -import net.minecraft.world.entity.LivingEntity; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.item.TooltipFlag; -import net.minecraft.world.level.BlockGetter; -import net.minecraft.world.level.LevelReader; -import net.minecraft.world.level.block.ChainBlock; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.material.PushReaction; - -public class Rope extends ChainBlock { - public Rope(Properties properties) { - super(properties); - this.registerDefaultState(this.stateDefinition.any().setValue(WATERLOGGED, Boolean.FALSE) - .setValue(AXIS, Direction.Axis.Y)); - } - - public PushReaction getPistonPushReaction(BlockState blockState) { - return PushReaction.DESTROY; - } - - @Override - public void appendHoverText(ItemStack stack, BlockGetter level, List component, TooltipFlag flag) { - if (!Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); - } - - if (Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.rope.1").withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.rope.2").withStyle(ChatFormatting.GRAY)); - } - super.appendHoverText(stack, level, component, flag); - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/Trellis.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/Trellis.java deleted file mode 100644 index 0d86b1ac..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/common/block/Trellis.java +++ /dev/null @@ -1,177 +0,0 @@ -package com.github.suel_ki.beautify.common.block; - -import java.util.Arrays; -import java.util.List; - -import net.minecraft.ChatFormatting; -import net.minecraft.client.gui.screens.Screen; -import net.minecraft.core.BlockPos; -import net.minecraft.core.Direction; -import net.minecraft.network.chat.Component; -import net.minecraft.sounds.SoundEvents; -import net.minecraft.sounds.SoundSource; -import net.minecraft.stats.Stats; -import net.minecraft.world.InteractionHand; -import net.minecraft.world.InteractionResult; -import net.minecraft.world.entity.player.Player; -import net.minecraft.world.item.Item; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.item.Items; -import net.minecraft.world.item.TooltipFlag; -import net.minecraft.world.item.context.BlockPlaceContext; -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.HorizontalDirectionalBlock; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition; -import net.minecraft.world.level.block.state.properties.BooleanProperty; -import net.minecraft.world.level.block.state.properties.IntegerProperty; -import net.minecraft.world.phys.BlockHitResult; -import net.minecraft.world.phys.shapes.CollisionContext; -import net.minecraft.world.phys.shapes.VoxelShape; - -public class Trellis extends HorizontalDirectionalBlock { - private static final List validFlowers = Arrays.asList(Items.AIR, Items.ROSE_BUSH, Items.SUNFLOWER, - Items.PEONY, Items.LILAC, Items.VINE, Items.WEEPING_VINES, Items.TWISTING_VINES, Items.GLOW_LICHEN); - - // FLOWERS indicates which index of the flowers List below is active - public static final IntegerProperty FLOWERS = IntegerProperty.create("flowers", 0, validFlowers.size() - 1); - - public static final BooleanProperty CEILLING = BooleanProperty.create("ceilling"); - private static final VoxelShape SHAPE_CEILLING = Block.box(0, 14, 0, 16, 16, 16); - private static final VoxelShape SHAPE_SOUTH = Block.box(0, 0, 0, 16, 16, 2); - private static final VoxelShape SHAPE_NORTH = Block.box(0, 0, 14, 16, 16, 16); - private static final VoxelShape SHAPE_WEST = Block.box(14, 0, 0, 16, 16, 16); - private static final VoxelShape SHAPE_EAST = Block.box(0, 0, 0, 2, 16, 16); - - public Trellis(Properties properties) { - super(properties); - this.registerDefaultState(this.defaultBlockState().setValue(CEILLING, false).setValue(FACING, Direction.NORTH)); - } - - public List getValidFlowers() { - return validFlowers; - } - - @Override - public BlockState getStateForPlacement(BlockPlaceContext context) { - // if the trellis placed on underside of block -> hanging from the ceilling - if (context.getClickedFace() == Direction.DOWN) { - return this.defaultBlockState().setValue(FACING, context.getHorizontalDirection().getOpposite()) - .setValue(CEILLING, true); - } - // otherwise on a wall - return this.defaultBlockState().setValue(FACING, context.getHorizontalDirection().getOpposite()) - .setValue(CEILLING, false); - } - - @Override - public VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, CollisionContext context) { - if (state.getValue(CEILLING)) { - return SHAPE_CEILLING; - } - - return switch (state.getValue(FACING)) { - case SOUTH -> SHAPE_SOUTH; - case EAST -> SHAPE_EAST; - case WEST -> SHAPE_WEST; - default -> SHAPE_NORTH; - }; - } - - /*@Override - public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { - return true; - }*/ - - @Override - public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, - BlockHitResult result) { - - if (!level.isClientSide() && hand == InteractionHand.MAIN_HAND) { - - ItemStack playerStack = player.getItemInHand(hand); - - // if there is a flower - if (state.getValue(FLOWERS) != 0) { - - // giving flower and clearing pot if hand empty or same stack - if (playerStack.isEmpty()) { - player.setItemInHand(hand, new ItemStack(validFlowers.get(state.getValue(FLOWERS)))); - level.setBlock(pos, state.setValue(FLOWERS, 0), 3); - level.playSound(null, pos, SoundEvents.AZALEA_LEAVES_BREAK, SoundSource.BLOCKS, 1, 1); - return InteractionResult.SUCCESS; - } else if (playerStack.is(validFlowers.get(state.getValue(FLOWERS))) - && playerStack.getCount() < playerStack.getMaxStackSize()) { - playerStack.grow(1); - level.setBlock(pos, state.setValue(FLOWERS, 0), 3); - level.playSound(null, pos, SoundEvents.AZALEA_LEAVES_BREAK, SoundSource.BLOCKS, 1, 1); - return InteractionResult.SUCCESS; - } - - // else just return - return InteractionResult.CONSUME; - } else { // if there is no flower - - // checks if the flower in hand matches the available types - for (Item flower : validFlowers) { - if (playerStack.getItem().equals(flower)) { - level.setBlock(pos, state.setValue(FLOWERS, validFlowers.indexOf(flower)), 3); - player.awardStat(Stats.POT_FLOWER); - if (!flower.equals(Items.AIR)) { - level.playSound(null, pos, SoundEvents.AZALEA_PLACE, SoundSource.BLOCKS, 1, 1); - } - if (!player.getAbilities().instabuild) { - playerStack.shrink(1); - } - return InteractionResult.SUCCESS; - } - } - // if the flower is not a valid one - return InteractionResult.CONSUME; - } - } - // end of statement - return InteractionResult.CONSUME; - } - - @Override - public ItemStack getCloneItemStack(BlockGetter level, BlockPos pos, BlockState state) { - return this.isEmpty(state) ? super.getCloneItemStack(level, pos, state) : new ItemStack(getContent(state)); - } - - private boolean isEmpty(BlockState state) { - return state.getValue(FLOWERS) == 0; - } - - public Block getContent(BlockState state) { - return Block.byItem(validFlowers.get(state.getValue(FLOWERS))); - } - - @Override - protected void createBlockStateDefinition(StateDefinition.Builder builder) { - builder.add(FACING, CEILLING, FLOWERS); - } - - @Override - public void appendHoverText(ItemStack stack, BlockGetter level, List component, TooltipFlag flag) { - if (!Screen.hasShiftDown() && !Screen.hasControlDown()) { - component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); - component.add(Component.translatable("tooltip.beautify.plantlist").withStyle(ChatFormatting.YELLOW)); - } - - if (Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.trellis.1").withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.trellis.2").withStyle(ChatFormatting.GRAY)); - } - - if (Screen.hasControlDown()) { - component.add(Component.translatable("tooltip.beautify.trellis.plant_header").withStyle(ChatFormatting.UNDERLINE) - .withStyle(ChatFormatting.BOLD).withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.trellis.plants") - .withStyle(ChatFormatting.GRAY)); - } - super.appendHoverText(stack, level, component, flag); - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/compat/jade/JadePlugin.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/compat/jade/JadePlugin.java deleted file mode 100644 index 9e2b194c..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/compat/jade/JadePlugin.java +++ /dev/null @@ -1,23 +0,0 @@ -package com.github.suel_ki.beautify.compat.jade; - -import com.github.suel_ki.beautify.common.block.HangingPot; -import com.github.suel_ki.beautify.common.block.Trellis; -import com.github.suel_ki.beautify.compat.jade.provider.BookStackProvider; -import com.github.suel_ki.beautify.compat.jade.provider.HangingPotProvider; -import com.github.suel_ki.beautify.compat.jade.provider.TrellisProvider; -import com.github.suel_ki.beautify.core.init.BlockInit; -import snownee.jade.api.IWailaClientRegistration; -import snownee.jade.api.IWailaPlugin; -import snownee.jade.api.WailaPlugin; - -@WailaPlugin -public class JadePlugin implements IWailaPlugin { - - @Override - public void registerClient(IWailaClientRegistration registration) { - registration.registerBlockComponent(HangingPotProvider.INSTANCE, HangingPot.class); - registration.registerBlockComponent(TrellisProvider.INSTANCE, Trellis.class); - registration.registerCustomEnchantPower(BlockInit.BOOKSTACK, BookStackProvider.INSTANCE); - } - -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/compat/jade/provider/BookStackProvider.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/compat/jade/provider/BookStackProvider.java deleted file mode 100644 index 8c1b083d..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/compat/jade/provider/BookStackProvider.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.github.suel_ki.beautify.compat.jade.provider; - -import net.minecraft.core.BlockPos; -import net.minecraft.world.level.Level; -import net.minecraft.world.level.block.state.BlockState; -import snownee.jade.api.platform.CustomEnchantPower; - -public enum BookStackProvider implements CustomEnchantPower { - - INSTANCE; - - @Override - public float getEnchantPowerBonus(BlockState state, Level level, BlockPos pos) { - return 1; - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/compat/jade/provider/HangingPotProvider.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/compat/jade/provider/HangingPotProvider.java deleted file mode 100644 index edae6bfd..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/compat/jade/provider/HangingPotProvider.java +++ /dev/null @@ -1,43 +0,0 @@ -package com.github.suel_ki.beautify.compat.jade.provider; - -import com.github.suel_ki.beautify.Beautify; -import com.github.suel_ki.beautify.common.block.HangingPot; -import net.minecraft.ChatFormatting; -import net.minecraft.network.chat.Component; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.level.block.state.BlockState; -import snownee.jade.api.BlockAccessor; -import snownee.jade.api.IBlockComponentProvider; -import snownee.jade.api.ITooltip; -import snownee.jade.api.config.IPluginConfig; -import snownee.jade.api.ui.IDisplayHelper; -import snownee.jade.api.ui.IElementHelper; - -public enum HangingPotProvider implements IBlockComponentProvider { - - INSTANCE; - - @Override - public void appendTooltip(ITooltip tooltip, BlockAccessor accessor, IPluginConfig config) { - if (accessor.getBlock() instanceof HangingPot hangingPot) { - BlockState state = accessor.getBlockState(); - // if there is a flower - if (state.getValue(HangingPot.POTFLOWER) != 0) { - ItemStack iconFlower = new ItemStack(hangingPot.getValidFlowers().get(state.getValue(HangingPot.POTFLOWER))); - if (iconFlower.isEmpty()) - return; - tooltip.add(IElementHelper.get().smallItem(iconFlower)); - tooltip.append(IDisplayHelper.get().stripColor(iconFlower.getHoverName())); - } - if (state.getValue(HangingPot.GROWN)) { - tooltip.add(Component.translatable("tooltip.jade.crop_mature").withStyle(ChatFormatting.GREEN)); - } - } - } - - @Override - public ResourceLocation getUid() { - return Beautify.id("hanging_pot.pot_flower"); - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/compat/jade/provider/TrellisProvider.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/compat/jade/provider/TrellisProvider.java deleted file mode 100644 index a5b72bef..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/compat/jade/provider/TrellisProvider.java +++ /dev/null @@ -1,37 +0,0 @@ -package com.github.suel_ki.beautify.compat.jade.provider; - -import com.github.suel_ki.beautify.common.block.Trellis; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.level.block.state.BlockState; -import snownee.jade.api.BlockAccessor; -import snownee.jade.api.IBlockComponentProvider; -import snownee.jade.api.ITooltip; -import snownee.jade.api.config.IPluginConfig; -import snownee.jade.api.ui.IDisplayHelper; -import snownee.jade.api.ui.IElementHelper; - -public enum TrellisProvider implements IBlockComponentProvider { - - INSTANCE; - - @Override - public void appendTooltip(ITooltip tooltip, BlockAccessor accessor, IPluginConfig config) { - if (accessor.getBlock() instanceof Trellis trellis) { - BlockState state = accessor.getBlockState(); - // if there is a plant - if (state.getValue(Trellis.FLOWERS) != 0) { - ItemStack iconFlower = new ItemStack(trellis.getValidFlowers().get(state.getValue(Trellis.FLOWERS))); - if (iconFlower.isEmpty()) - return; - tooltip.add(IElementHelper.get().smallItem(iconFlower)); - tooltip.append(IDisplayHelper.get().stripColor(iconFlower.getHoverName())); - } - } - } - - @Override - public ResourceLocation getUid() { - return new ResourceLocation("trellis.pot_plant"); - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/core/init/BlockInit.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/core/init/BlockInit.java deleted file mode 100644 index 1d60ff5a..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/core/init/BlockInit.java +++ /dev/null @@ -1,427 +0,0 @@ -package com.github.suel_ki.beautify.core.init; - -import com.github.suel_ki.beautify.Beautify; -import com.github.suel_ki.beautify.common.block.BookStack; -import com.github.suel_ki.beautify.common.block.BotanistWorkbench; -import com.github.suel_ki.beautify.common.block.HangingPot; -import com.github.suel_ki.beautify.common.block.LampBamboo; -import com.github.suel_ki.beautify.common.block.LampCandleabra; -import com.github.suel_ki.beautify.common.block.LampJar; -import com.github.suel_ki.beautify.common.block.LampLightBulb; -import com.github.suel_ki.beautify.common.block.Blinds; -import com.github.suel_ki.beautify.common.block.PictureFrame; -import com.github.suel_ki.beautify.common.block.Trellis; -import com.github.suel_ki.beautify.common.block.Rope; - -import net.fabricmc.fabric.api.registry.FlammableBlockRegistry; -import net.minecraft.core.Registry; -import net.minecraft.core.registries.BuiltInRegistries; -import net.minecraft.world.level.block.Block; -import net.minecraft.world.level.block.Blocks; -import net.minecraft.world.level.block.SoundType; -import net.minecraft.world.level.block.state.BlockBehaviour; -import net.minecraft.world.level.material.MapColor; -import net.minecraft.world.level.material.PushReaction; - -public class BlockInit { - - // BLOCKS - public static final BookStack BOOKSTACK = register("bookstack", - new BookStack(BlockBehaviour.Properties.of().mapColor(MapColor.NONE) - .strength(0.2F, 0.2F).sound(SoundInit.BOOKSTACK_SOUNDS).noOcclusion())); - - public static final Rope ROPE = register("rope", - new Rope(BlockBehaviour.Properties.of().mapColor(MapColor.NONE) - .strength(0.2F, 0.2F).sound(SoundType.WOOL).noOcclusion())); - - public static final HangingPot HANGING_POT = register("hanging_pot", - new HangingPot(BlockBehaviour.Properties.of().mapColor(MapColor.TERRACOTTA_BROWN) - .noOcclusion().strength(0.1f, 0.1f).sound(SoundType.STONE).lightLevel((state) -> { - if (state.getValue(HangingPot.POTFLOWER) == 15) { - return 7; - } else if (state.getValue(HangingPot.POTFLOWER) == 22) { - return 14; - } else { - return 0; - } - }))); - - // trellis - public static final Trellis OAK_TRELLIS = register("oak_trellis", - new Trellis(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).mapColor(MapColor.WOOD).strength(0.3F, 0.3F) - .sound(SoundType.BAMBOO).noOcclusion())); - - public static final Trellis SPRUCE_TRELLIS = register("spruce_trellis", - new Trellis(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).strength(0.3F, 0.3F) - .sound(SoundType.BAMBOO).noOcclusion())); - - public static final Trellis BIRCH_TRELLIS = register("birch_trellis", - new Trellis(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).strength(0.3F, 0.3F) - .sound(SoundType.BAMBOO).noOcclusion())); - - public static final Trellis JUNGLE_TRELLIS = register("jungle_trellis", - new Trellis(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).strength(0.3F, 0.3F) - .sound(SoundType.BAMBOO).noOcclusion())); - - public static final Trellis ACACIA_TRELLIS = register("acacia_trellis", - new Trellis(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).strength(0.3F, 0.3F) - .sound(SoundType.BAMBOO).noOcclusion())); - - public static final Trellis DARK_OAK_TRELLIS = register("dark_oak_trellis", - new Trellis(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD) - .strength(0.3F, 0.3F).sound(SoundType.BAMBOO).noOcclusion())); - - public static final Trellis MANGROVE_TRELLIS = register("mangrove_trellis", - new Trellis(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD) - .strength(0.3F, 0.3F).sound(SoundType.BAMBOO).noOcclusion())); - - public static final Trellis CRIMSON_TRELLIS = register("crimson_trellis", - new Trellis(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD) - .strength(0.3F, 0.3F).sound(SoundType.BAMBOO).noOcclusion())); - - public static final Trellis CHERRY_TRELLIS = register("cherry_trellis", - new Trellis(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD) - .strength(0.3F, 0.3F).sound(SoundType.BAMBOO).noOcclusion())); - - public static final Trellis WARPED_TRELLIS = register("warped_trellis", - new Trellis(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).strength(0.3F, 0.3F) - .sound(SoundType.BAMBOO).noOcclusion())); - - // lamps - public static final LampLightBulb LAMP_LIGHT_BULB = register("lamp_light_bulb", - new LampLightBulb(BlockBehaviour.Properties.of().mapColor(MapColor.METAL).noOcclusion() - .strength(0.2f, 0.2f).sound(SoundType.LANTERN).lightLevel((state) -> { - if (state.getValue(LampLightBulb.ON)) { - return 14; - } else { - return 0; - } - }))); - - public static final LampBamboo LAMP_BAMBOO = register("lamp_bamboo", - new LampBamboo(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.1f, 0.1f).sound(SoundType.SCAFFOLDING).lightLevel((state) -> { - if (state.getValue(LampBamboo.ON)) { - return 14; - } else { - return 0; - } - }))); - - public static final LampJar LAMP_JAR = register("lamp_jar", - new LampJar(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).noOcclusion() - .strength(0.05f, 0.05f).sound(SoundType.GLASS).lightLevel((state) -> { - final int fill = state.getValue(LampJar.FILL_LEVEL); - return switch (fill) { - case 5 -> 8; - case 10 -> 11; - case 15 -> 14; - default -> 0; - }; - }))); - - // candleabras - public static final LampCandleabra LAMP_CANDLEABRA = register("lamp_candleabra", - new LampCandleabra(BlockBehaviour.Properties.of().mapColor(MapColor.METAL).noOcclusion() - .strength(0.2f, 0.2f).sound(SoundType.LANTERN).lightLevel((state) -> { - if (state.getValue(LampCandleabra.ON)) { - return 14; - } else { - return 0; - } - }))); - - public static final LampCandleabra LAMP_CANDLEABRA_LIGHT_BLUE = register( - "lamp_candleabra_light_blue", - new LampCandleabra(BlockBehaviour.Properties.of().mapColor(MapColor.METAL) - .noOcclusion().strength(0.2f, 0.2f).sound(SoundType.LANTERN).lightLevel((state) -> { - if (state.getValue(LampCandleabra.ON)) { - return 14; - } else { - return 0; - } - }))); - - public static final LampCandleabra LAMP_CANDLEABRA_LIGHT_GRAY = register( - "lamp_candleabra_light_gray", - new LampCandleabra(BlockBehaviour.Properties.of().mapColor(MapColor.METAL) - .noOcclusion().strength(0.2f, 0.2f).sound(SoundType.LANTERN).lightLevel((state) -> { - if (state.getValue(LampCandleabra.ON)) { - return 14; - } else { - return 0; - } - }))); - - public static final LampCandleabra LAMP_CANDLEABRA_BLACK = register( - "lamp_candleabra_black", - new LampCandleabra(BlockBehaviour.Properties.of().mapColor(MapColor.METAL) - .noOcclusion().strength(0.2f, 0.2f).sound(SoundType.LANTERN).lightLevel((state) -> { - if (state.getValue(LampCandleabra.ON)) { - return 14; - } else { - return 0; - } - }))); - - public static final LampCandleabra LAMP_CANDLEABRA_BLUE = register( - "lamp_candleabra_blue", - new LampCandleabra(BlockBehaviour.Properties.of().mapColor(MapColor.METAL).noOcclusion() - .strength(0.2f, 0.2f).sound(SoundType.LANTERN).lightLevel((state) -> { - if (state.getValue(LampCandleabra.ON)) { - return 14; - } else { - return 0; - } - }))); - - public static final LampCandleabra LAMP_CANDLEABRA_BROWN = register( - "lamp_candleabra_brown", - new LampCandleabra(BlockBehaviour.Properties.of().mapColor(MapColor.METAL) - .noOcclusion().strength(0.2f, 0.2f).sound(SoundType.LANTERN).lightLevel((state) -> { - if (state.getValue(LampCandleabra.ON)) { - return 14; - } else { - return 0; - } - }))); - - public static final LampCandleabra LAMP_CANDLEABRA_CYAN = register( - "lamp_candleabra_cyan", - new LampCandleabra(BlockBehaviour.Properties.of().mapColor(MapColor.METAL).noOcclusion() - .strength(0.2f, 0.2f).sound(SoundType.LANTERN).lightLevel((state) -> { - if (state.getValue(LampCandleabra.ON)) { - return 14; - } else { - return 0; - } - }))); - - public static final LampCandleabra LAMP_CANDLEABRA_GRAY = register( - "lamp_candleabra_gray", - new LampCandleabra(BlockBehaviour.Properties.of().mapColor(MapColor.METAL).noOcclusion() - .strength(0.2f, 0.2f).sound(SoundType.LANTERN).lightLevel((state) -> { - if (state.getValue(LampCandleabra.ON)) { - return 14; - } else { - return 0; - } - }))); - - public static final LampCandleabra LAMP_CANDLEABRA_GREEN = register( - "lamp_candleabra_green", - new LampCandleabra(BlockBehaviour.Properties.of().mapColor(MapColor.METAL) - .noOcclusion().strength(0.2f, 0.2f).sound(SoundType.LANTERN).lightLevel((state) -> { - if (state.getValue(LampCandleabra.ON)) { - return 14; - } else { - return 0; - } - }))); - - public static final LampCandleabra LAMP_CANDLEABRA_LIME = register( - "lamp_candleabra_lime", - new LampCandleabra(BlockBehaviour.Properties.of().mapColor(MapColor.METAL).noOcclusion() - .strength(0.2f, 0.2f).sound(SoundType.LANTERN).lightLevel((state) -> { - if (state.getValue(LampCandleabra.ON)) { - return 14; - } else { - return 0; - } - }))); - - public static final LampCandleabra LAMP_CANDLEABRA_MAGENTA = register( - "lamp_candleabra_magenta", - new LampCandleabra(BlockBehaviour.Properties.of().mapColor(MapColor.METAL) - .noOcclusion().strength(0.2f, 0.2f).sound(SoundType.LANTERN).lightLevel((state) -> { - if (state.getValue(LampCandleabra.ON)) { - return 14; - } else { - return 0; - } - }))); - - public static final LampCandleabra LAMP_CANDLEABRA_ORANGE = register( - "lamp_candleabra_orange", - new LampCandleabra(BlockBehaviour.Properties.of().mapColor(MapColor.METAL) - .noOcclusion().strength(0.2f, 0.2f).sound(SoundType.LANTERN).lightLevel((state) -> { - if (state.getValue(LampCandleabra.ON)) { - return 14; - } else { - return 0; - } - }))); - - public static final LampCandleabra LAMP_CANDLEABRA_PINK = register( - "lamp_candleabra_pink", - new LampCandleabra(BlockBehaviour.Properties.of().mapColor(MapColor.METAL).noOcclusion() - .strength(0.2f, 0.2f).sound(SoundType.LANTERN).lightLevel((state) -> { - if (state.getValue(LampCandleabra.ON)) { - return 14; - } else { - return 0; - } - }))); - - public static final LampCandleabra LAMP_CANDLEABRA_PURPLE = register( - "lamp_candleabra_purple", - new LampCandleabra(BlockBehaviour.Properties.of().mapColor(MapColor.METAL) - .noOcclusion().strength(0.2f, 0.2f).sound(SoundType.LANTERN).lightLevel((state) -> { - if (state.getValue(LampCandleabra.ON)) { - return 14; - } else { - return 0; - } - }))); - - public static final LampCandleabra LAMP_CANDLEABRA_RED = register("lamp_candleabra_red", - new LampCandleabra(BlockBehaviour.Properties.of().mapColor(MapColor.METAL).noOcclusion() - .strength(0.2f, 0.2f).sound(SoundType.LANTERN).lightLevel((state) -> { - if (state.getValue(LampCandleabra.ON)) { - return 14; - } else { - return 0; - } - }))); - - public static final LampCandleabra LAMP_CANDLEABRA_WHITE = register( - "lamp_candleabra_white", - new LampCandleabra(BlockBehaviour.Properties.of().mapColor(MapColor.METAL) - .noOcclusion().strength(0.2f, 0.2f).sound(SoundType.LANTERN).lightLevel((state) -> { - if (state.getValue(LampCandleabra.ON)) { - return 14; - } else { - return 0; - } - }))); - - public static final LampCandleabra LAMP_CANDLEABRA_YELLOW = register( - "lamp_candleabra_yellow", - new LampCandleabra(BlockBehaviour.Properties.of().mapColor(MapColor.METAL) - .noOcclusion().strength(0.2f, 0.2f).sound(SoundType.LANTERN).lightLevel((state) -> { - if (state.getValue(LampCandleabra.ON)) { - return 14; - } else { - return 0; - } - }))); - - // blinds - public static final Blinds SPRUCE_BLINDS = register("spruce_blinds", - new Blinds(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.4f, 0.4f).sound(SoundType.WOOD))); - - public static final Blinds DARK_OAK_BLINDS = register("dark_oak_blinds", - new Blinds(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.4f, 0.4f).sound(SoundType.WOOD))); - - public static final Blinds CRIMSON_BLINDS = register("crimson_blinds", - new Blinds(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.4f, 0.4f).sound(SoundType.WOOD))); - - public static final Blinds CHERRY_BLINDS = register("cherry_blinds", - new Blinds(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.4f, 0.4f).sound(SoundType.WOOD))); - - public static final Blinds ACACIA_BLINDS = register("acacia_blinds", - new Blinds(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.4f, 0.4f).sound(SoundType.WOOD))); - - public static final Blinds JUNGLE_BLINDS = register("jungle_blinds", - new Blinds(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.4f, 0.4f).sound(SoundType.WOOD))); - - public static final Blinds OAK_BLINDS = register("oak_blinds", - new Blinds(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.4f, 0.4f).sound(SoundType.WOOD))); - - public static final Blinds BIRCH_BLINDS = register("birch_blinds", - new Blinds(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.4f, 0.4f).sound(SoundType.WOOD))); - - public static final Blinds WARPED_BLINDS = register("warped_blinds", - new Blinds(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.4f, 0.4f).sound(SoundType.WOOD))); - - public static final Blinds MANGROVE_BLINDS = register("mangrove_blinds", - new Blinds(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.4f, 0.4f).sound(SoundType.WOOD))); - - public static final Blinds IRON_BLINDS = register("iron_blinds", - new Blinds(BlockBehaviour.Properties.of().mapColor(MapColor.METAL).noOcclusion() - .strength(0.4f, 0.4f).sound(SoundType.CHAIN).requiresCorrectToolForDrops())); - - // picture frames - public static final PictureFrame SPRUCE_PICTURE_FRAME = register( - "spruce_picture_frame", - new PictureFrame(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.1f, 0.1f).sound(SoundType.WOOD).noOcclusion().pushReaction(PushReaction.DESTROY))); - - public static final PictureFrame DARK_OAK_PICTURE_FRAME = register( - "dark_oak_picture_frame", - new PictureFrame(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.1f, 0.1f).sound(SoundType.WOOD).noOcclusion().pushReaction(PushReaction.DESTROY))); - - public static final PictureFrame CRIMSON_PICTURE_FRAME = register( - "crimson_picture_frame", - new PictureFrame(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.1f, 0.1f).sound(SoundType.WOOD).noOcclusion().pushReaction(PushReaction.DESTROY))); - - public static final PictureFrame CHERRY_PICTURE_FRAME = register( - "cherry_picture_frame", - new PictureFrame(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.1f, 0.1f).sound(SoundType.WOOD).noOcclusion().pushReaction(PushReaction.DESTROY))); - - public static final PictureFrame ACACIA_PICTURE_FRAME = register( - "acacia_picture_frame", - new PictureFrame(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.1f, 0.1f).sound(SoundType.WOOD).noOcclusion().pushReaction(PushReaction.DESTROY))); - - public static final PictureFrame JUNGLE_PICTURE_FRAME = register( - "jungle_picture_frame", - new PictureFrame(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.1f, 0.1f).sound(SoundType.WOOD).noOcclusion().pushReaction(PushReaction.DESTROY))); - - public static final PictureFrame OAK_PICTURE_FRAME = register("oak_picture_frame", - new PictureFrame(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.1f, 0.1f).sound(SoundType.WOOD).noOcclusion().pushReaction(PushReaction.DESTROY))); - - public static final PictureFrame BIRCH_PICTURE_FRAME = register("birch_picture_frame", - new PictureFrame(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.1f, 0.1f).sound(SoundType.WOOD).noOcclusion().pushReaction(PushReaction.DESTROY))); - - public static final PictureFrame WARPED_PICTURE_FRAME = register( - "warped_picture_frame", - new PictureFrame(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.1f, 0.1f).sound(SoundType.WOOD).noOcclusion().pushReaction(PushReaction.DESTROY))); - - public static final PictureFrame MANGROVE_PICTURE_FRAME = register( - "mangrove_picture_frame", - new PictureFrame(BlockBehaviour.Properties.of().mapColor(MapColor.WOOD).noOcclusion() - .strength(0.1f, 0.1f).sound(SoundType.WOOD).noOcclusion().pushReaction(PushReaction.DESTROY))); - - public static final PictureFrame QUARTZ_PICTURE_FRAME = register( - "quartz_picture_frame", - new PictureFrame(BlockBehaviour.Properties.of().mapColor(MapColor.QUARTZ).noOcclusion() - .strength(0.1f, 0.1f).sound(SoundType.STONE).noOcclusion().pushReaction(PushReaction.DESTROY))); - - // workbench - public static final BotanistWorkbench BOTANIST_WORKBENCH = register("botanist_workbench", - new BotanistWorkbench(BlockBehaviour.Properties.copy(Blocks.CRAFTING_TABLE))); - - private static T register(String name, T block) { - return Registry.register(BuiltInRegistries.BLOCK, Beautify.id(name), block); - } - - public static void registerFlammableBlock() { - FlammableBlockRegistry flammableRegistry = FlammableBlockRegistry.getDefaultInstance(); - flammableRegistry.add(OAK_TRELLIS, 30, 20); - flammableRegistry.add(SPRUCE_TRELLIS, 30, 20); - flammableRegistry.add(BIRCH_TRELLIS, 30, 20); - flammableRegistry.add(JUNGLE_TRELLIS, 30, 20); - flammableRegistry.add(ACACIA_TRELLIS, 30, 20); - flammableRegistry.add(DARK_OAK_TRELLIS, 30, 20); - flammableRegistry.add(MANGROVE_TRELLIS, 30, 20); - flammableRegistry.add(CHERRY_TRELLIS, 30, 20); - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/core/init/ItemInit.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/core/init/ItemInit.java deleted file mode 100644 index 8444f4c6..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/core/init/ItemInit.java +++ /dev/null @@ -1,279 +0,0 @@ -package com.github.suel_ki.beautify.core.init; - -import com.github.suel_ki.beautify.Beautify; -import net.fabricmc.fabric.api.item.v1.FabricItemSettings; -import net.fabricmc.fabric.api.registry.FuelRegistry; -import net.minecraft.core.Registry; -import net.minecraft.core.registries.BuiltInRegistries; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.world.item.BlockItem; -import net.minecraft.world.item.Item; - -import java.util.LinkedHashMap; -import java.util.Map; - -public final class ItemInit { - - public static final Map ITEMS = new LinkedHashMap<>(); - - // trellis - public static final BlockItem OAK_TRELLIS_ITEM = register("oak_trellis", - new BlockItem(BlockInit.OAK_TRELLIS, - new FabricItemSettings())); - - public static final BlockItem SPRUCE_TRELLIS_ITEM = register("spruce_trellis", - new BlockItem(BlockInit.SPRUCE_TRELLIS, - new FabricItemSettings())); - - public static final BlockItem BIRCH_TRELLIS_ITEM = register("birch_trellis", - new BlockItem(BlockInit.BIRCH_TRELLIS, - new FabricItemSettings())); - - public static final BlockItem JUNGLE_TRELLIS_ITEM = register("jungle_trellis", - new BlockItem(BlockInit.JUNGLE_TRELLIS, - new FabricItemSettings())); - - public static final BlockItem ACACIA_TRELLIS_ITEM = register("acacia_trellis", - new BlockItem(BlockInit.ACACIA_TRELLIS, - new FabricItemSettings())); - - public static final BlockItem DARK_OAK_TRELLIS_ITEM = register("dark_oak_trellis", - new BlockItem(BlockInit.DARK_OAK_TRELLIS, - new FabricItemSettings())); - - public static final BlockItem MANGROVE_TRELLIS_ITEM = register("mangrove_trellis", - new BlockItem(BlockInit.MANGROVE_TRELLIS, - new FabricItemSettings())); - - public static final BlockItem CRIMSON_TRELLIS_ITEM = register("crimson_trellis", - new BlockItem(BlockInit.CRIMSON_TRELLIS, - new FabricItemSettings())); - - public static final BlockItem CHERRY_TRELLIS_ITEM = register("cherry_trellis", - new BlockItem(BlockInit.CHERRY_TRELLIS, - new FabricItemSettings())); - - public static final BlockItem WARPED_TRELLIS_ITEM = register("warped_trellis", - new BlockItem(BlockInit.WARPED_TRELLIS, - new FabricItemSettings())); - - // blinds - public static final BlockItem OAK_BLINDS_ITEM = register("oak_blinds", - new BlockItem(BlockInit.OAK_BLINDS, - new FabricItemSettings())); - - public static final BlockItem SPRUCE_BLINDS_ITEM = register("spruce_blinds", - new BlockItem(BlockInit.SPRUCE_BLINDS, - new FabricItemSettings())); - - public static final BlockItem BIRCH_BLINDS_ITEM = register("birch_blinds", - new BlockItem(BlockInit.BIRCH_BLINDS, - new FabricItemSettings())); - - public static final BlockItem JUNGLE_BLINDS_ITEM = register("jungle_blinds", - new BlockItem(BlockInit.JUNGLE_BLINDS, - new FabricItemSettings())); - - public static final BlockItem ACACIA_BLINDS_ITEM = register("acacia_blinds", - new BlockItem(BlockInit.ACACIA_BLINDS, - new FabricItemSettings())); - - public static final BlockItem DARK_OAK_BLINDS_ITEM = register("dark_oak_blinds", - new BlockItem(BlockInit.DARK_OAK_BLINDS, - new FabricItemSettings())); - - public static final BlockItem CRIMSON_BLINDS_ITEM = register("crimson_blinds", - new BlockItem(BlockInit.CRIMSON_BLINDS, - new FabricItemSettings())); - - public static final BlockItem CHERRY_BLINDS_ITEM = register("cherry_blinds", - new BlockItem(BlockInit.CHERRY_BLINDS, - new FabricItemSettings())); - - public static final BlockItem WARPED_BLINDS_ITEM = register("warped_blinds", - new BlockItem(BlockInit.WARPED_BLINDS, - new FabricItemSettings())); - - public static final BlockItem MANGROVE_BLINDS_ITEM = register("mangrove_blinds", - new BlockItem(BlockInit.MANGROVE_BLINDS, - new FabricItemSettings())); - - public static final BlockItem IRON_BLINDS_ITEM = register("iron_blinds", - new BlockItem(BlockInit.IRON_BLINDS, - new FabricItemSettings())); - - // picture frame - public static final BlockItem OAK_PICTURE_FRAME_ITEM = register("oak_picture_frame", - new BlockItem(BlockInit.OAK_PICTURE_FRAME, - new FabricItemSettings())); - - public static final BlockItem SPRUCE_PICTURE_FRAME_ITEM = register("spruce_picture_frame", - new BlockItem(BlockInit.SPRUCE_PICTURE_FRAME, - new FabricItemSettings())); - - public static final BlockItem BIRCH_PICTURE_FRAME_ITEM = register("birch_picture_frame", - new BlockItem(BlockInit.BIRCH_PICTURE_FRAME, - new FabricItemSettings())); - - public static final BlockItem JUNGLE_PICTURE_FRAME_ITEM = register("jungle_picture_frame", - new BlockItem(BlockInit.JUNGLE_PICTURE_FRAME, - new FabricItemSettings())); - - public static final BlockItem ACACIA_PICTURE_FRAME_ITEM = register("acacia_picture_frame", - new BlockItem(BlockInit.ACACIA_PICTURE_FRAME, - new FabricItemSettings())); - - public static final BlockItem DARK_OAK_PICTURE_FRAME_ITEM = register("dark_oak_picture_frame", - new BlockItem(BlockInit.DARK_OAK_PICTURE_FRAME, - new FabricItemSettings())); - - public static final BlockItem CRIMSON_PICTURE_FRAME_ITEM = register("crimson_picture_frame", - new BlockItem(BlockInit.CRIMSON_PICTURE_FRAME, - new FabricItemSettings())); - - public static final BlockItem CHERRY_PICTURE_FRAME_ITEM = register("cherry_picture_frame", - new BlockItem(BlockInit.CHERRY_PICTURE_FRAME, - new FabricItemSettings())); - - public static final BlockItem WARPED_PICTURE_FRAME_ITEM = register("warped_picture_frame", - new BlockItem(BlockInit.WARPED_PICTURE_FRAME, - new FabricItemSettings())); - - public static final BlockItem MANGROVE_PICTURE_FRAME_ITEM = register("mangrove_picture_frame", - new BlockItem(BlockInit.MANGROVE_PICTURE_FRAME, - new FabricItemSettings())); - - public static final BlockItem QUARTZ_PICTURE_FRAME_ITEM = register("quartz_picture_frame", - new BlockItem(BlockInit.QUARTZ_PICTURE_FRAME, - new FabricItemSettings())); - - public static BlockItem ROPE_ITEM = register("rope", - new BlockItem(BlockInit.ROPE, - new FabricItemSettings())); - - public static final BlockItem HANGING_POT_ITEM = register("hanging_pot", - new BlockItem(BlockInit.HANGING_POT, - new FabricItemSettings())); - - public static final BlockItem BOOKSTACK_ITEM = register("bookstack", - new BlockItem(BlockInit.BOOKSTACK, - new FabricItemSettings())); - - public static final BlockItem LAMP_LIGHT_BULB_ITEM = register("lamp_light_bulb", - new BlockItem(BlockInit.LAMP_LIGHT_BULB, - new FabricItemSettings())); - - public static final BlockItem LAMP_BAMBOO_ITEM = register("lamp_bamboo", - new BlockItem(BlockInit.LAMP_BAMBOO, - new FabricItemSettings())); - - public static final BlockItem LAMP_JAR_ITEM = register("lamp_jar", - new BlockItem(BlockInit.LAMP_JAR, - new FabricItemSettings())); - - // candleabras - public static final BlockItem LAMP_CANDLEABRA_ITEM = register("lamp_candleabra", - new BlockItem(BlockInit.LAMP_CANDLEABRA, - new FabricItemSettings())); - - public static final BlockItem LAMP_CANDLEABRA_LIGHT_BLUE_ITEM = register("lamp_candleabra_light_blue", - new BlockItem(BlockInit.LAMP_CANDLEABRA_LIGHT_BLUE, - new FabricItemSettings())); - - public static final BlockItem LAMP_CANDLEABRA_LIGHT_GRAY_ITEM = register("lamp_candleabra_light_gray", - new BlockItem(BlockInit.LAMP_CANDLEABRA_LIGHT_GRAY, - new FabricItemSettings())); - - public static final BlockItem LAMP_CANDLEABRA_BLACK_ITEM = register("lamp_candleabra_black", - new BlockItem(BlockInit.LAMP_CANDLEABRA_BLACK, - new FabricItemSettings())); - - public static final BlockItem LAMP_CANDLEABRA_BLUE_ITEM = register("lamp_candleabra_blue", - new BlockItem(BlockInit.LAMP_CANDLEABRA_BLUE, - new FabricItemSettings())); - - public static final BlockItem LAMP_CANDLEABRA_BROWN_ITEM = register("lamp_candleabra_brown", - new BlockItem(BlockInit.LAMP_CANDLEABRA_BROWN, - new FabricItemSettings())); - - public static final BlockItem LAMP_CANDLEABRA_CYAN_ITEM = register("lamp_candleabra_cyan", - new BlockItem(BlockInit.LAMP_CANDLEABRA_CYAN, - new FabricItemSettings())); - - public static final BlockItem LAMP_CANDLEABRA_GRAY_ITEM = register("lamp_candleabra_gray", - new BlockItem(BlockInit.LAMP_CANDLEABRA_GRAY, - new FabricItemSettings())); - - public static final BlockItem LAMP_CANDLEABRA_GREEN_ITEM = register("lamp_candleabra_green", - new BlockItem(BlockInit.LAMP_CANDLEABRA_GREEN, - new FabricItemSettings())); - - public static final BlockItem LAMP_CANDLEABRA_LIME_ITEM = register("lamp_candleabra_lime", - new BlockItem(BlockInit.LAMP_CANDLEABRA_LIME, - new FabricItemSettings())); - - public static final BlockItem LAMP_CANDLEABRA_MAGENTA_ITEM = register("lamp_candleabra_magenta", - new BlockItem(BlockInit.LAMP_CANDLEABRA_MAGENTA, - new FabricItemSettings())); - - public static final BlockItem LAMP_CANDLEABRA_ORANGE_ITEM = register("lamp_candleabra_orange", - new BlockItem(BlockInit.LAMP_CANDLEABRA_ORANGE, - new FabricItemSettings())); - - public static final BlockItem LAMP_CANDLEABRA_PINK_ITEM = register("lamp_candleabra_pink", - new BlockItem(BlockInit.LAMP_CANDLEABRA_PINK, - new FabricItemSettings())); - - public static final BlockItem LAMP_CANDLEABRA_PURPLE_ITEM = register("lamp_candleabra_purple", - new BlockItem(BlockInit.LAMP_CANDLEABRA_PURPLE, - new FabricItemSettings())); - - public static final BlockItem LAMP_CANDLEABRA_RED_ITEM = register("lamp_candleabra_red", - new BlockItem(BlockInit.LAMP_CANDLEABRA_RED, new FabricItemSettings())); - - public static final BlockItem LAMP_CANDLEABRA_WHITE_ITEM = register("lamp_candleabra_white", - new BlockItem(BlockInit.LAMP_CANDLEABRA_WHITE, - new FabricItemSettings())); - - public static final BlockItem LAMP_CANDLEABRA_YELLOW_ITEM = register("lamp_candleabra_yellow", - new BlockItem(BlockInit.LAMP_CANDLEABRA_YELLOW, - new FabricItemSettings())); - - // workbench - public static final BlockItem BOTANIST_WORKBENCH_ITEM = register("botanist_workbench", - new BlockItem(BlockInit.BOTANIST_WORKBENCH, - new FabricItemSettings())); - - private static T register(String name, T item) { - ITEMS.put(item, Beautify.id(name)); - return Registry.register(BuiltInRegistries.ITEM, Beautify.id(name), item); - } - - public static void registerFuel() { - FuelRegistry.INSTANCE.add(OAK_TRELLIS_ITEM, 300); - FuelRegistry.INSTANCE.add(SPRUCE_TRELLIS_ITEM, 300); - FuelRegistry.INSTANCE.add(BIRCH_TRELLIS_ITEM, 300); - FuelRegistry.INSTANCE.add(JUNGLE_TRELLIS_ITEM, 300); - FuelRegistry.INSTANCE.add(ACACIA_TRELLIS_ITEM, 300); - FuelRegistry.INSTANCE.add(DARK_OAK_TRELLIS_ITEM, 300); - FuelRegistry.INSTANCE.add(MANGROVE_TRELLIS_ITEM, 300); - FuelRegistry.INSTANCE.add(CHERRY_TRELLIS_ITEM, 300); - FuelRegistry.INSTANCE.add(OAK_BLINDS_ITEM, 300); - FuelRegistry.INSTANCE.add(SPRUCE_BLINDS_ITEM, 300); - FuelRegistry.INSTANCE.add(BIRCH_BLINDS_ITEM, 300); - FuelRegistry.INSTANCE.add(JUNGLE_BLINDS_ITEM, 300); - FuelRegistry.INSTANCE.add(ACACIA_BLINDS_ITEM, 300); - FuelRegistry.INSTANCE.add(DARK_OAK_BLINDS_ITEM, 300); - FuelRegistry.INSTANCE.add(CHERRY_BLINDS_ITEM, 300); - FuelRegistry.INSTANCE.add(MANGROVE_BLINDS_ITEM, 300); - FuelRegistry.INSTANCE.add(OAK_PICTURE_FRAME_ITEM, 300); - FuelRegistry.INSTANCE.add(SPRUCE_PICTURE_FRAME_ITEM, 300); - FuelRegistry.INSTANCE.add(BIRCH_PICTURE_FRAME_ITEM, 300); - FuelRegistry.INSTANCE.add(JUNGLE_PICTURE_FRAME_ITEM, 300); - FuelRegistry.INSTANCE.add(ACACIA_PICTURE_FRAME_ITEM, 300); - FuelRegistry.INSTANCE.add(DARK_OAK_PICTURE_FRAME_ITEM, 300); - FuelRegistry.INSTANCE.add(MANGROVE_PICTURE_FRAME_ITEM, 300); - FuelRegistry.INSTANCE.add(CHERRY_PICTURE_FRAME_ITEM, 300); - FuelRegistry.INSTANCE.add(ROPE_ITEM, 100); - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/core/init/ModVillagers.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/core/init/ModVillagers.java deleted file mode 100644 index ba76946d..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/core/init/ModVillagers.java +++ /dev/null @@ -1,32 +0,0 @@ -package com.github.suel_ki.beautify.core.init; - -import com.github.suel_ki.beautify.Beautify; -import com.google.common.collect.ImmutableSet; -import net.fabricmc.fabric.api.object.builder.v1.world.poi.PointOfInterestHelper; -import net.minecraft.core.Registry; -import net.minecraft.core.registries.BuiltInRegistries; -import net.minecraft.sounds.SoundEvents; -import net.minecraft.world.entity.ai.village.poi.PoiType; -import net.minecraft.world.entity.npc.VillagerProfession; -import net.minecraft.world.level.block.state.BlockState; - - -public class ModVillagers { - - public static final PoiType BOTANIST_WORKBENCH_POI = registerPoiType("botanist_workbench_poi", - ImmutableSet.copyOf(BlockInit.BOTANIST_WORKBENCH.getStateDefinition().getPossibleStates())); - - public static final VillagerProfession BOTANIST = registerVillagerProfession("botanist", - new VillagerProfession("botanist", x -> x.value() == BOTANIST_WORKBENCH_POI, - x -> x.value() == BOTANIST_WORKBENCH_POI, ImmutableSet.of(), ImmutableSet.of(), - SoundEvents.CAVE_VINES_PLACE)); - - private static PoiType registerPoiType(String name, Iterable blocks) { - return PointOfInterestHelper.register(Beautify.id(name), 1, 1, blocks); - //return Registry.register(Registry.POINT_OF_INTEREST_TYPE, Beautify.id(name), poiType); - } - - private static T registerVillagerProfession(String name, T profession) { - return Registry.register(BuiltInRegistries.VILLAGER_PROFESSION, Beautify.id(name), profession); - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/core/init/SoundInit.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/core/init/SoundInit.java deleted file mode 100644 index 80a5ccf3..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/core/init/SoundInit.java +++ /dev/null @@ -1,31 +0,0 @@ -package com.github.suel_ki.beautify.core.init; - -import com.github.suel_ki.beautify.Beautify; -import net.minecraft.core.Registry; -import net.minecraft.core.registries.BuiltInRegistries; -import net.minecraft.sounds.SoundEvent; -import net.minecraft.world.level.block.SoundType; - -public class SoundInit { - - //BOOKSTACK - public static final SoundEvent BOOKSTACK_NEXT = registerSoundEvent("block.bookstack_next"); - public static final SoundEvent BOOKSTACK_BREAK = registerSoundEvent("block.bookstack_break"); - public static final SoundEvent BOOKSTACK_STEP = registerSoundEvent("block.bookstack_step"); - public static final SoundEvent BOOKSTACK_PLACE = registerSoundEvent("block.bookstack_place"); - public static final SoundEvent BOOKSTACK_HIT = registerSoundEvent("block.bookstack_hit"); - public static final SoundEvent BOOKSTACK_FALL = registerSoundEvent("block.bookstack_fall"); - - public static final SoundType BOOKSTACK_SOUNDS = new SoundType(1f, 1f, SoundInit.BOOKSTACK_BREAK, - SoundInit.BOOKSTACK_STEP, SoundInit.BOOKSTACK_PLACE, SoundInit.BOOKSTACK_HIT, SoundInit.BOOKSTACK_FALL); - - //BLINDS - public static final SoundEvent BLINDS_OPEN = registerSoundEvent("block.blinds_open"); - public static final SoundEvent BLINDS_CLOSE = registerSoundEvent("block.blinds_close"); - - private static SoundEvent registerSoundEvent(String name) { - return Registry.register(BuiltInRegistries.SOUND_EVENT, Beautify.id(name), SoundEvent.createVariableRangeEvent(Beautify.id(name))); - } - - -} \ No newline at end of file diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/core/init/TradesInit.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/core/init/TradesInit.java deleted file mode 100644 index 9d3b202d..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/core/init/TradesInit.java +++ /dev/null @@ -1,122 +0,0 @@ -package com.github.suel_ki.beautify.core.init; - -import net.fabricmc.fabric.api.object.builder.v1.trade.TradeOfferHelper; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.item.Items; -import net.minecraft.world.item.trading.MerchantOffer; - -public class TradesInit { - - public static void addCustomTrades() { - // lvl1 - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 1, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 2), - new ItemStack(ItemInit.HANGING_POT_ITEM, 1), 16, 6, 0.02F))); - - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 1, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 3), - new ItemStack(Items.FLOWER_POT, 2), 12, 5, 0.02F))); - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 1, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 2), - new ItemStack(Items.VINE, 3), 16, 4, 0.02F))); - - // lvl2 - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 2, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 1), - new ItemStack(ItemInit.OAK_TRELLIS_ITEM, 2), 16, 3, 0.02F))); - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 2, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 1), - new ItemStack(ItemInit.SPRUCE_TRELLIS_ITEM, 2), 16, 3, 0.02F))); - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 2, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 1), - new ItemStack(ItemInit.BIRCH_TRELLIS_ITEM, 2), 16, 3, 0.02F))); - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 2, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 1), - new ItemStack(ItemInit.JUNGLE_TRELLIS_ITEM, 2), 16, 3, 0.02F))); - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 2, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 1), - new ItemStack(ItemInit.ACACIA_TRELLIS_ITEM, 2), 16, 3, 0.02F))); - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 2, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 1), - new ItemStack(ItemInit.DARK_OAK_TRELLIS_ITEM, 2), 16, 3, 0.02F))); - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 2, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 1), - new ItemStack(ItemInit.MANGROVE_TRELLIS_ITEM, 2), 16, 3, 0.02F))); - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 2, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 1), - new ItemStack(ItemInit.CRIMSON_TRELLIS_ITEM, 2), 16, 3, 0.02F))); - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 2, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 1), - new ItemStack(ItemInit.WARPED_TRELLIS_ITEM, 2), 16, 3, 0.02F))); - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 2, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 4), - new ItemStack(Items.BIG_DRIPLEAF, 3), 6, 9, 0.02F))); - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 2, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 3), - new ItemStack(Items.SMALL_DRIPLEAF, 4), 6, 8, 0.02F))); - - // lvl3 - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 3, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 1), - new ItemStack(Items.LILY_PAD, 4), 8, 5, 0.02F))); - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 3, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 3), - new ItemStack(Items.SPORE_BLOSSOM, 1), 12, 10, 0.02F))); - - // lvl4 - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 4, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 1), - new ItemStack(Items.MOSS_BLOCK, 2), 48, 3, 0.02F))); - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 4, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 2), - new ItemStack(Items.FLOWERING_AZALEA, 1), 16, 7, 0.02F))); - - // lvl 5 - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 5, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 1), - new ItemStack(Items.ROOTED_DIRT, 4), 24, 3, 0.02F))); - TradeOfferHelper.registerVillagerOffers(ModVillagers.BOTANIST, 5, factories -> factories - .add((trader, rand) -> - new MerchantOffer( - new ItemStack(Items.EMERALD, 1), - new ItemStack(Items.HANGING_ROOTS, 3), 10, 7, 0.02F))); - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/mixin/EnchantmentTableBlockMixin.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/mixin/EnchantmentTableBlockMixin.java deleted file mode 100644 index 712d0e67..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/mixin/EnchantmentTableBlockMixin.java +++ /dev/null @@ -1,23 +0,0 @@ -package com.github.suel_ki.beautify.mixin; - -import com.github.suel_ki.beautify.core.init.BlockInit; -import net.minecraft.core.BlockPos; -import net.minecraft.world.level.Level; -import net.minecraft.world.level.block.EnchantmentTableBlock; -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(EnchantmentTableBlock.class) -public class EnchantmentTableBlockMixin { - - @Inject(at = @At("HEAD"), method = "isValidBookShelf", cancellable = true) - private static void isValidBookShelf(Level level, BlockPos tablePos, BlockPos blockPos, CallbackInfoReturnable cir) - { - if (level.getBlockState(tablePos.offset(blockPos)).is(BlockInit.BOOKSTACK) - && level.isEmptyBlock(tablePos.offset(blockPos.getX() / 2, blockPos.getY(), blockPos.getZ() / 2))) { - cir.setReturnValue(true); - } - } -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/particle/ParticleInit.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/particle/ParticleInit.java deleted file mode 100644 index 50cee5fb..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/particle/ParticleInit.java +++ /dev/null @@ -1,26 +0,0 @@ -package com.github.suel_ki.beautify.particle; - -import com.github.suel_ki.beautify.Beautify; -import com.github.suel_ki.beautify.particle.custom.GlowEssenceParticles; -import net.fabricmc.fabric.api.client.particle.v1.ParticleFactoryRegistry; -import net.fabricmc.fabric.api.particle.v1.FabricParticleTypes; -import net.minecraft.core.Registry; -import net.minecraft.core.particles.ParticleType; -import net.minecraft.core.particles.SimpleParticleType; -import net.minecraft.core.registries.BuiltInRegistries; - -public class ParticleInit { - - public static final SimpleParticleType GLOWESSENCE_PARTICLES = register("glowessence_particles", - FabricParticleTypes.simple()); - - private static > T register(String name, T particle) { - return Registry.register(BuiltInRegistries.PARTICLE_TYPE, Beautify.id(name), particle); - } - - public static void registerParticle() { - ParticleFactoryRegistry.getInstance().register(GLOWESSENCE_PARTICLES, GlowEssenceParticles.Provider::new); - } - -} - diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/particle/custom/GlowEssenceParticles.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/particle/custom/GlowEssenceParticles.java deleted file mode 100644 index 7d918193..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/particle/custom/GlowEssenceParticles.java +++ /dev/null @@ -1,81 +0,0 @@ -package com.github.suel_ki.beautify.particle.custom; - -import net.fabricmc.api.EnvType; -import net.fabricmc.api.Environment; -import net.minecraft.client.multiplayer.ClientLevel; -import net.minecraft.client.particle.Particle; -import net.minecraft.client.particle.ParticleProvider; -import net.minecraft.client.particle.ParticleRenderType; -import net.minecraft.client.particle.SpriteSet; -import net.minecraft.client.particle.TextureSheetParticle; -import net.minecraft.core.particles.SimpleParticleType; - -@Environment(EnvType.CLIENT) -public class GlowEssenceParticles extends TextureSheetParticle { - - private static final float size = 0.07f; - - protected GlowEssenceParticles(ClientLevel level, double xCoord, double yCoord, double zCoord, SpriteSet spriteSet, - double xd, double yd, double zd) { - super(level, xCoord, yCoord, zCoord, xd, yd, zd); - - this.friction = 0.8F; - this.xd = xd; - this.yd = yd; - this.zd = zd; - this.quadSize = 0; - this.lifetime = (int) (60 * (0.5 + Math.random() / 2)); - this.setSpriteFromAge(spriteSet); - - this.rCol = 1f; - this.gCol = 1f; - this.bCol = 1f; - } - - private void fadeOut() { - float fadeValue = (float) Math.sin(Math.PI * ((float) this.age / this.lifetime)); - - this.alpha = 1 * fadeValue; - this.quadSize = size * fadeValue; - } - - private void move() { - if(Math.random()<=0.05) { - this.xd = (Math.random()*2-1)/70; - } - if(Math.random()<=0.05) { - this.yd = (Math.random()*2-1)/70; - } - if(Math.random()<=0.05) { - this.zd = (Math.random()*2-1)/70; - } - } - - @Override - public ParticleRenderType getRenderType() { - return ParticleRenderType.PARTICLE_SHEET_LIT; - } - - @Override - public void tick() { - super.tick(); - - this.fadeOut(); - this.move(); - } - - @Environment(EnvType.CLIENT) - public static class Provider implements ParticleProvider { - private final SpriteSet sprites; - - public Provider(SpriteSet spriteSet) { - this.sprites = spriteSet; - } - - public Particle createParticle(SimpleParticleType particleType, ClientLevel level, double x, double y, double z, - double dx, double dy, double dz) { - return new GlowEssenceParticles(level, x, y, z, this.sprites, dx, dy, dz); - } - } - -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/util/BeautifyConfig.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/util/BeautifyConfig.java deleted file mode 100644 index 28702aa0..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/util/BeautifyConfig.java +++ /dev/null @@ -1,35 +0,0 @@ -package com.github.suel_ki.beautify.util; - -import com.github.suel_ki.beautify.Beautify; -import me.shedaniel.autoconfig.ConfigData; -import me.shedaniel.autoconfig.annotation.Config; -import me.shedaniel.autoconfig.annotation.ConfigEntry; -import me.shedaniel.cloth.clothconfig.shadowed.blue.endless.jankson.Comment; - -@Config(name = Beautify.MODID) -public class BeautifyConfig implements ConfigData { - - @ConfigEntry.Gui.CollapsibleObject - public Blinds blinds = new Blinds(); - - @ConfigEntry.Gui.CollapsibleObject - public Houses houses = new Houses(); - - public static class Blinds { - @ConfigEntry.Gui.Tooltip - @ConfigEntry.BoundedDiscrete(min = 0, max = 100) - @Comment("Searches X-Blocks below and X/2 to the sides of the clicked blind for others and opens/closes them too") - public int searchRadius = 6; - - @ConfigEntry.Gui.Tooltip - @Comment("Opens blinds from the topmost blind on if true") - public boolean opensFromRoot = true; - } - - public static class Houses { - @ConfigEntry.Gui.Tooltip - @Comment("Defines the chance of a Botanist Villager House inside a village") - public int botanistSpawnWeight = 2; - } - -} diff --git a/mod/beautify/src/main/java/com/github/suel_ki/beautify/util/ModMenuConfig.java b/mod/beautify/src/main/java/com/github/suel_ki/beautify/util/ModMenuConfig.java deleted file mode 100644 index 8a5d6cfc..00000000 --- a/mod/beautify/src/main/java/com/github/suel_ki/beautify/util/ModMenuConfig.java +++ /dev/null @@ -1,13 +0,0 @@ -package com.github.suel_ki.beautify.util; - -import com.terraformersmc.modmenu.api.ConfigScreenFactory; -import com.terraformersmc.modmenu.api.ModMenuApi; -import me.shedaniel.autoconfig.AutoConfig; - -public class ModMenuConfig implements ModMenuApi { - - @Override - public ConfigScreenFactory getModConfigScreenFactory() { - return parent -> AutoConfig.getConfigScreen(BeautifyConfig.class, parent).get(); - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/acacia_blinds.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/acacia_blinds.json deleted file mode 100644 index 40e5b45d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/acacia_blinds.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "variants": { - "open=false,facing=north,hidden=false": { - "model": "beautify:block/blinds/acacia_blinds_up" - }, - "open=false,facing=east,hidden=false": { - "model": "beautify:block/blinds/acacia_blinds_up", - "y": 90 - }, - "open=false,facing=south,hidden=false": { - "model": "beautify:block/blinds/acacia_blinds_up", - "y": 180 - }, - "open=false,facing=west,hidden=false": { - "model": "beautify:block/blinds/acacia_blinds_up", - "y": 270 - }, - "open=true,facing=north,hidden=false": { - "model": "beautify:block/blinds/acacia_blinds_down" - }, - "open=true,facing=east,hidden=false": { - "model": "beautify:block/blinds/acacia_blinds_down", - "y": 90 - }, - "open=true,facing=south,hidden=false": { - "model": "beautify:block/blinds/acacia_blinds_down", - "y": 180 - }, - "open=true,facing=west,hidden=false": { - "model": "beautify:block/blinds/acacia_blinds_down", - "y": 270 - }, - "hidden=true":{ - "model": "beautify:block/blinds/none" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/acacia_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/acacia_picture_frame.json deleted file mode 100644 index 8af10e80..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/acacia_picture_frame.json +++ /dev/null @@ -1,199 +0,0 @@ -{ - "variants": { - "frame_motive=0,facing=north": { - "model": "beautify:block/pictureframes/acacia_sunset_picture_frame" - }, - "frame_motive=0,facing=east": { - "model": "beautify:block/pictureframes/acacia_sunset_picture_frame", - "y": 90 - }, - "frame_motive=0,facing=south": { - "model": "beautify:block/pictureframes/acacia_sunset_picture_frame", - "y": 180 - }, - "frame_motive=0,facing=west": { - "model": "beautify:block/pictureframes/acacia_sunset_picture_frame", - "y": 270 - }, - "frame_motive=1,facing=north": { - "model": "beautify:block/pictureframes/acacia_flower_picture_frame" - }, - "frame_motive=1,facing=east": { - "model": "beautify:block/pictureframes/acacia_flower_picture_frame", - "y": 90 - }, - "frame_motive=1,facing=south": { - "model": "beautify:block/pictureframes/acacia_flower_picture_frame", - "y": 180 - }, - "frame_motive=1,facing=west": { - "model": "beautify:block/pictureframes/acacia_flower_picture_frame", - "y": 270 - }, - "frame_motive=2,facing=north": { - "model": "beautify:block/pictureframes/acacia_wasteland_picture_frame" - }, - "frame_motive=2,facing=east": { - "model": "beautify:block/pictureframes/acacia_wasteland_picture_frame", - "y": 90 - }, - "frame_motive=2,facing=south": { - "model": "beautify:block/pictureframes/acacia_wasteland_picture_frame", - "y": 180 - }, - "frame_motive=2,facing=west": { - "model": "beautify:block/pictureframes/acacia_wasteland_picture_frame", - "y": 270 - }, - "frame_motive=3,facing=north": { - "model": "beautify:block/pictureframes/acacia_plant_picture_frame" - }, - "frame_motive=3,facing=east": { - "model": "beautify:block/pictureframes/acacia_plant_picture_frame", - "y": 90 - }, - "frame_motive=3,facing=south": { - "model": "beautify:block/pictureframes/acacia_plant_picture_frame", - "y": 180 - }, - "frame_motive=3,facing=west": { - "model": "beautify:block/pictureframes/acacia_plant_picture_frame", - "y": 270 - }, - "frame_motive=4,facing=north": { - "model": "beautify:block/pictureframes/acacia_kebab_picture_frame" - }, - "frame_motive=4,facing=east": { - "model": "beautify:block/pictureframes/acacia_kebab_picture_frame", - "y": 90 - }, - "frame_motive=4,facing=south": { - "model": "beautify:block/pictureframes/acacia_kebab_picture_frame", - "y": 180 - }, - "frame_motive=4,facing=west": { - "model": "beautify:block/pictureframes/acacia_kebab_picture_frame", - "y": 270 - }, - "frame_motive=5,facing=north": { - "model": "beautify:block/pictureframes/acacia_aztec2_picture_frame" - }, - "frame_motive=5,facing=east": { - "model": "beautify:block/pictureframes/acacia_aztec2_picture_frame", - "y": 90 - }, - "frame_motive=5,facing=south": { - "model": "beautify:block/pictureframes/acacia_aztec2_picture_frame", - "y": 180 - }, - "frame_motive=5,facing=west": { - "model": "beautify:block/pictureframes/acacia_aztec2_picture_frame", - "y": 270 - }, - "frame_motive=6,facing=north": { - "model": "beautify:block/pictureframes/acacia_aztec_picture_frame" - }, - "frame_motive=6,facing=east": { - "model": "beautify:block/pictureframes/acacia_aztec_picture_frame", - "y": 90 - }, - "frame_motive=6,facing=south": { - "model": "beautify:block/pictureframes/acacia_aztec_picture_frame", - "y": 180 - }, - "frame_motive=6,facing=west": { - "model": "beautify:block/pictureframes/acacia_aztec_picture_frame", - "y": 270 - }, - "frame_motive=7,facing=north": { - "model": "beautify:block/pictureframes/acacia_alban_picture_frame" - }, - "frame_motive=7,facing=east": { - "model": "beautify:block/pictureframes/acacia_alban_picture_frame", - "y": 90 - }, - "frame_motive=7,facing=south": { - "model": "beautify:block/pictureframes/acacia_alban_picture_frame", - "y": 180 - }, - "frame_motive=7,facing=west": { - "model": "beautify:block/pictureframes/acacia_alban_picture_frame", - "y": 270 - }, - "frame_motive=8,facing=north": { - "model": "beautify:block/pictureframes/acacia_bomb_picture_frame" - }, - "frame_motive=8,facing=east": { - "model": "beautify:block/pictureframes/acacia_bomb_picture_frame", - "y": 90 - }, - "frame_motive=8,facing=south": { - "model": "beautify:block/pictureframes/acacia_bomb_picture_frame", - "y": 180 - }, - "frame_motive=8,facing=west": { - "model": "beautify:block/pictureframes/acacia_bomb_picture_frame", - "y": 270 - }, - "frame_motive=9,facing=north": { - "model": "beautify:block/pictureframes/acacia_shroom_picture_frame" - }, - "frame_motive=9,facing=east": { - "model": "beautify:block/pictureframes/acacia_shroom_picture_frame", - "y": 90 - }, - "frame_motive=9,facing=south": { - "model": "beautify:block/pictureframes/acacia_shroom_picture_frame", - "y": 180 - }, - "frame_motive=9,facing=west": { - "model": "beautify:block/pictureframes/acacia_shroom_picture_frame", - "y": 270 - }, - "frame_motive=10,facing=north": { - "model": "beautify:block/pictureframes/acacia_river_picture_frame" - }, - "frame_motive=10,facing=east": { - "model": "beautify:block/pictureframes/acacia_river_picture_frame", - "y": 90 - }, - "frame_motive=10,facing=south": { - "model": "beautify:block/pictureframes/acacia_river_picture_frame", - "y": 180 - }, - "frame_motive=10,facing=west": { - "model": "beautify:block/pictureframes/acacia_river_picture_frame", - "y": 270 - }, - "frame_motive=11,facing=north": { - "model": "beautify:block/pictureframes/acacia_beach_picture_frame" - }, - "frame_motive=11,facing=east": { - "model": "beautify:block/pictureframes/acacia_beach_picture_frame", - "y": 90 - }, - "frame_motive=11,facing=south": { - "model": "beautify:block/pictureframes/acacia_beach_picture_frame", - "y": 180 - }, - "frame_motive=11,facing=west": { - "model": "beautify:block/pictureframes/acacia_beach_picture_frame", - "y": 270 - }, - "frame_motive=12,facing=north": { - "model": "beautify:block/pictureframes/acacia_frog_picture_frame" - }, - "frame_motive=12,facing=east": { - "model": "beautify:block/pictureframes/acacia_frog_picture_frame", - "y": 90 - }, - "frame_motive=12,facing=south": { - "model": "beautify:block/pictureframes/acacia_frog_picture_frame", - "y": 180 - }, - "frame_motive=12,facing=west": { - "model": "beautify:block/pictureframes/acacia_frog_picture_frame", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/acacia_trellis.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/acacia_trellis.json deleted file mode 100644 index 5bcb1ef0..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/acacia_trellis.json +++ /dev/null @@ -1,247 +0,0 @@ -{ - "variants": { - "ceilling=false,facing=north,flowers=0": { - "model": "beautify:block/trellis/acacia/closed_trellis", - "y": 270 - }, - "ceilling=false,facing=east,flowers=0": { - "model": "beautify:block/trellis/acacia/closed_trellis" - }, - "ceilling=false,facing=south,flowers=0": { - "model": "beautify:block/trellis/acacia/closed_trellis", - "y": 90 - }, - "ceilling=false,facing=west,flowers=0": { - "model": "beautify:block/trellis/acacia/closed_trellis", - "y": 180 - }, - "ceilling=true,facing=north,flowers=0": { - "model": "beautify:block/trellis/acacia/open_trellis" - }, - "ceilling=true,facing=east,flowers=0": { - "model": "beautify:block/trellis/acacia/open_trellis" - }, - "ceilling=true,facing=south,flowers=0": { - "model": "beautify:block/trellis/acacia/open_trellis" - }, - "ceilling=true,facing=west,flowers=0": { - "model": "beautify:block/trellis/acacia/open_trellis" - }, - "ceilling=false,facing=north,flowers=1": { - "model": "beautify:block/trellis/acacia/closed_trellis_rose", - "y": 270 - }, - "ceilling=false,facing=east,flowers=1": { - "model": "beautify:block/trellis/acacia/closed_trellis_rose" - }, - "ceilling=false,facing=south,flowers=1": { - "model": "beautify:block/trellis/acacia/closed_trellis_rose", - "y": 90 - }, - "ceilling=false,facing=west,flowers=1": { - "model": "beautify:block/trellis/acacia/closed_trellis_rose", - "y": 180 - }, - "ceilling=true,facing=north,flowers=1": { - "model": "beautify:block/trellis/acacia/open_trellis_rose" - }, - "ceilling=true,facing=east,flowers=1": { - "model": "beautify:block/trellis/acacia/open_trellis_rose" - }, - "ceilling=true,facing=south,flowers=1": { - "model": "beautify:block/trellis/acacia/open_trellis_rose" - }, - "ceilling=true,facing=west,flowers=1": { - "model": "beautify:block/trellis/acacia/open_trellis_rose" - }, - "ceilling=false,facing=north,flowers=2": { - "model": "beautify:block/trellis/acacia/closed_trellis_sunflower", - "y": 270 - }, - "ceilling=false,facing=east,flowers=2": { - "model": "beautify:block/trellis/acacia/closed_trellis_sunflower" - }, - "ceilling=false,facing=south,flowers=2": { - "model": "beautify:block/trellis/acacia/closed_trellis_sunflower", - "y": 90 - }, - "ceilling=false,facing=west,flowers=2": { - "model": "beautify:block/trellis/acacia/closed_trellis_sunflower", - "y": 180 - }, - "ceilling=true,facing=north,flowers=2": { - "model": "beautify:block/trellis/acacia/open_trellis_sunflower" - }, - "ceilling=true,facing=east,flowers=2": { - "model": "beautify:block/trellis/acacia/open_trellis_sunflower" - }, - "ceilling=true,facing=south,flowers=2": { - "model": "beautify:block/trellis/acacia/open_trellis_sunflower" - }, - "ceilling=true,facing=west,flowers=2": { - "model": "beautify:block/trellis/acacia/open_trellis_sunflower" - }, - "ceilling=false,facing=north,flowers=3": { - "model": "beautify:block/trellis/acacia/closed_trellis_peony", - "y": 270 - }, - "ceilling=false,facing=east,flowers=3": { - "model": "beautify:block/trellis/acacia/closed_trellis_peony" - }, - "ceilling=false,facing=south,flowers=3": { - "model": "beautify:block/trellis/acacia/closed_trellis_peony", - "y": 90 - }, - "ceilling=false,facing=west,flowers=3": { - "model": "beautify:block/trellis/acacia/closed_trellis_peony", - "y": 180 - }, - "ceilling=true,facing=north,flowers=3": { - "model": "beautify:block/trellis/acacia/open_trellis_peony" - }, - "ceilling=true,facing=east,flowers=3": { - "model": "beautify:block/trellis/acacia/open_trellis_peony" - }, - "ceilling=true,facing=south,flowers=3": { - "model": "beautify:block/trellis/acacia/open_trellis_peony" - }, - "ceilling=true,facing=west,flowers=3": { - "model": "beautify:block/trellis/acacia/open_trellis_peony" - }, - "ceilling=false,facing=north,flowers=4": { - "model": "beautify:block/trellis/acacia/closed_trellis_lilac", - "y": 270 - }, - "ceilling=false,facing=east,flowers=4": { - "model": "beautify:block/trellis/acacia/closed_trellis_lilac" - }, - "ceilling=false,facing=south,flowers=4": { - "model": "beautify:block/trellis/acacia/closed_trellis_lilac", - "y": 90 - }, - "ceilling=false,facing=west,flowers=4": { - "model": "beautify:block/trellis/acacia/closed_trellis_lilac", - "y": 180 - }, - "ceilling=true,facing=north,flowers=4": { - "model": "beautify:block/trellis/acacia/open_trellis_lilac" - }, - "ceilling=true,facing=east,flowers=4": { - "model": "beautify:block/trellis/acacia/open_trellis_lilac" - }, - "ceilling=true,facing=south,flowers=4": { - "model": "beautify:block/trellis/acacia/open_trellis_lilac" - }, - "ceilling=true,facing=west,flowers=4": { - "model": "beautify:block/trellis/acacia/open_trellis_lilac" - }, - "ceilling=false,facing=north,flowers=5": { - "model": "beautify:block/trellis/acacia/closed_trellis_vine", - "y": 270 - }, - "ceilling=false,facing=east,flowers=5": { - "model": "beautify:block/trellis/acacia/closed_trellis_vine" - }, - "ceilling=false,facing=south,flowers=5": { - "model": "beautify:block/trellis/acacia/closed_trellis_vine", - "y": 90 - }, - "ceilling=false,facing=west,flowers=5": { - "model": "beautify:block/trellis/acacia/closed_trellis_vine", - "y": 180 - }, - "ceilling=true,facing=north,flowers=5": { - "model": "beautify:block/trellis/acacia/open_trellis_vine" - }, - "ceilling=true,facing=east,flowers=5": { - "model": "beautify:block/trellis/acacia/open_trellis_vine" - }, - "ceilling=true,facing=south,flowers=5": { - "model": "beautify:block/trellis/acacia/open_trellis_vine" - }, - "ceilling=true,facing=west,flowers=5": { - "model": "beautify:block/trellis/acacia/open_trellis_vine" - }, - "ceilling=false,facing=north,flowers=6": { - "model": "beautify:block/trellis/acacia/closed_trellis_weeping_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=6": { - "model": "beautify:block/trellis/acacia/closed_trellis_weeping_vines" - }, - "ceilling=false,facing=south,flowers=6": { - "model": "beautify:block/trellis/acacia/closed_trellis_weeping_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=6": { - "model": "beautify:block/trellis/acacia/closed_trellis_weeping_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=6": { - "model": "beautify:block/trellis/acacia/open_trellis_weeping_vines" - }, - "ceilling=true,facing=east,flowers=6": { - "model": "beautify:block/trellis/acacia/open_trellis_weeping_vines" - }, - "ceilling=true,facing=south,flowers=6": { - "model": "beautify:block/trellis/acacia/open_trellis_weeping_vines" - }, - "ceilling=true,facing=west,flowers=6": { - "model": "beautify:block/trellis/acacia/open_trellis_weeping_vines" - }, - "ceilling=false,facing=north,flowers=7": { - "model": "beautify:block/trellis/acacia/closed_trellis_twisting_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=7": { - "model": "beautify:block/trellis/acacia/closed_trellis_twisting_vines" - }, - "ceilling=false,facing=south,flowers=7": { - "model": "beautify:block/trellis/acacia/closed_trellis_twisting_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=7": { - "model": "beautify:block/trellis/acacia/closed_trellis_twisting_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=7": { - "model": "beautify:block/trellis/acacia/open_trellis_twisting_vines" - }, - "ceilling=true,facing=east,flowers=7": { - "model": "beautify:block/trellis/acacia/open_trellis_twisting_vines" - }, - "ceilling=true,facing=south,flowers=7": { - "model": "beautify:block/trellis/acacia/open_trellis_twisting_vines" - }, - "ceilling=true,facing=west,flowers=7": { - "model": "beautify:block/trellis/acacia/open_trellis_twisting_vines" - }, - "ceilling=false,facing=north,flowers=8": { - "model": "beautify:block/trellis/acacia/closed_trellis_lichen", - "y": 270 - }, - "ceilling=false,facing=east,flowers=8": { - "model": "beautify:block/trellis/acacia/closed_trellis_lichen" - }, - "ceilling=false,facing=south,flowers=8": { - "model": "beautify:block/trellis/acacia/closed_trellis_lichen", - "y": 90 - }, - "ceilling=false,facing=west,flowers=8": { - "model": "beautify:block/trellis/acacia/closed_trellis_lichen", - "y": 180 - }, - "ceilling=true,facing=north,flowers=8": { - "model": "beautify:block/trellis/acacia/open_trellis_lichen" - }, - "ceilling=true,facing=east,flowers=8": { - "model": "beautify:block/trellis/acacia/open_trellis_lichen" - }, - "ceilling=true,facing=south,flowers=8": { - "model": "beautify:block/trellis/acacia/open_trellis_lichen" - }, - "ceilling=true,facing=west,flowers=8": { - "model": "beautify:block/trellis/acacia/open_trellis_lichen" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/birch_blinds.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/birch_blinds.json deleted file mode 100644 index 628ee2e7..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/birch_blinds.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "variants": { - "open=false,facing=north,hidden=false": { - "model": "beautify:block/blinds/birch_blinds_up" - }, - "open=false,facing=east,hidden=false": { - "model": "beautify:block/blinds/birch_blinds_up", - "y": 90 - }, - "open=false,facing=south,hidden=false": { - "model": "beautify:block/blinds/birch_blinds_up", - "y": 180 - }, - "open=false,facing=west,hidden=false": { - "model": "beautify:block/blinds/birch_blinds_up", - "y": 270 - }, - "open=true,facing=north,hidden=false": { - "model": "beautify:block/blinds/birch_blinds_down" - }, - "open=true,facing=east,hidden=false": { - "model": "beautify:block/blinds/birch_blinds_down", - "y": 90 - }, - "open=true,facing=south,hidden=false": { - "model": "beautify:block/blinds/birch_blinds_down", - "y": 180 - }, - "open=true,facing=west,hidden=false": { - "model": "beautify:block/blinds/birch_blinds_down", - "y": 270 - }, - "hidden=true":{ - "model": "beautify:block/blinds/none" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/birch_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/birch_picture_frame.json deleted file mode 100644 index 4e68a391..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/birch_picture_frame.json +++ /dev/null @@ -1,199 +0,0 @@ -{ - "variants": { - "frame_motive=0,facing=north": { - "model": "beautify:block/pictureframes/birch_sunset_picture_frame" - }, - "frame_motive=0,facing=east": { - "model": "beautify:block/pictureframes/birch_sunset_picture_frame", - "y": 90 - }, - "frame_motive=0,facing=south": { - "model": "beautify:block/pictureframes/birch_sunset_picture_frame", - "y": 180 - }, - "frame_motive=0,facing=west": { - "model": "beautify:block/pictureframes/birch_sunset_picture_frame", - "y": 270 - }, - "frame_motive=1,facing=north": { - "model": "beautify:block/pictureframes/birch_flower_picture_frame" - }, - "frame_motive=1,facing=east": { - "model": "beautify:block/pictureframes/birch_flower_picture_frame", - "y": 90 - }, - "frame_motive=1,facing=south": { - "model": "beautify:block/pictureframes/birch_flower_picture_frame", - "y": 180 - }, - "frame_motive=1,facing=west": { - "model": "beautify:block/pictureframes/birch_flower_picture_frame", - "y": 270 - }, - "frame_motive=2,facing=north": { - "model": "beautify:block/pictureframes/birch_wasteland_picture_frame" - }, - "frame_motive=2,facing=east": { - "model": "beautify:block/pictureframes/birch_wasteland_picture_frame", - "y": 90 - }, - "frame_motive=2,facing=south": { - "model": "beautify:block/pictureframes/birch_wasteland_picture_frame", - "y": 180 - }, - "frame_motive=2,facing=west": { - "model": "beautify:block/pictureframes/birch_wasteland_picture_frame", - "y": 270 - }, - "frame_motive=3,facing=north": { - "model": "beautify:block/pictureframes/birch_plant_picture_frame" - }, - "frame_motive=3,facing=east": { - "model": "beautify:block/pictureframes/birch_plant_picture_frame", - "y": 90 - }, - "frame_motive=3,facing=south": { - "model": "beautify:block/pictureframes/birch_plant_picture_frame", - "y": 180 - }, - "frame_motive=3,facing=west": { - "model": "beautify:block/pictureframes/birch_plant_picture_frame", - "y": 270 - }, - "frame_motive=4,facing=north": { - "model": "beautify:block/pictureframes/birch_kebab_picture_frame" - }, - "frame_motive=4,facing=east": { - "model": "beautify:block/pictureframes/birch_kebab_picture_frame", - "y": 90 - }, - "frame_motive=4,facing=south": { - "model": "beautify:block/pictureframes/birch_kebab_picture_frame", - "y": 180 - }, - "frame_motive=4,facing=west": { - "model": "beautify:block/pictureframes/birch_kebab_picture_frame", - "y": 270 - }, - "frame_motive=5,facing=north": { - "model": "beautify:block/pictureframes/birch_aztec2_picture_frame" - }, - "frame_motive=5,facing=east": { - "model": "beautify:block/pictureframes/birch_aztec2_picture_frame", - "y": 90 - }, - "frame_motive=5,facing=south": { - "model": "beautify:block/pictureframes/birch_aztec2_picture_frame", - "y": 180 - }, - "frame_motive=5,facing=west": { - "model": "beautify:block/pictureframes/birch_aztec2_picture_frame", - "y": 270 - }, - "frame_motive=6,facing=north": { - "model": "beautify:block/pictureframes/birch_aztec_picture_frame" - }, - "frame_motive=6,facing=east": { - "model": "beautify:block/pictureframes/birch_aztec_picture_frame", - "y": 90 - }, - "frame_motive=6,facing=south": { - "model": "beautify:block/pictureframes/birch_aztec_picture_frame", - "y": 180 - }, - "frame_motive=6,facing=west": { - "model": "beautify:block/pictureframes/birch_aztec_picture_frame", - "y": 270 - }, - "frame_motive=7,facing=north": { - "model": "beautify:block/pictureframes/birch_alban_picture_frame" - }, - "frame_motive=7,facing=east": { - "model": "beautify:block/pictureframes/birch_alban_picture_frame", - "y": 90 - }, - "frame_motive=7,facing=south": { - "model": "beautify:block/pictureframes/birch_alban_picture_frame", - "y": 180 - }, - "frame_motive=7,facing=west": { - "model": "beautify:block/pictureframes/birch_alban_picture_frame", - "y": 270 - }, - "frame_motive=8,facing=north": { - "model": "beautify:block/pictureframes/birch_bomb_picture_frame" - }, - "frame_motive=8,facing=east": { - "model": "beautify:block/pictureframes/birch_bomb_picture_frame", - "y": 90 - }, - "frame_motive=8,facing=south": { - "model": "beautify:block/pictureframes/birch_bomb_picture_frame", - "y": 180 - }, - "frame_motive=8,facing=west": { - "model": "beautify:block/pictureframes/birch_bomb_picture_frame", - "y": 270 - }, - "frame_motive=9,facing=north": { - "model": "beautify:block/pictureframes/birch_shroom_picture_frame" - }, - "frame_motive=9,facing=east": { - "model": "beautify:block/pictureframes/birch_shroom_picture_frame", - "y": 90 - }, - "frame_motive=9,facing=south": { - "model": "beautify:block/pictureframes/birch_shroom_picture_frame", - "y": 180 - }, - "frame_motive=9,facing=west": { - "model": "beautify:block/pictureframes/birch_shroom_picture_frame", - "y": 270 - }, - "frame_motive=10,facing=north": { - "model": "beautify:block/pictureframes/birch_river_picture_frame" - }, - "frame_motive=10,facing=east": { - "model": "beautify:block/pictureframes/birch_river_picture_frame", - "y": 90 - }, - "frame_motive=10,facing=south": { - "model": "beautify:block/pictureframes/birch_river_picture_frame", - "y": 180 - }, - "frame_motive=10,facing=west": { - "model": "beautify:block/pictureframes/birch_river_picture_frame", - "y": 270 - }, - "frame_motive=11,facing=north": { - "model": "beautify:block/pictureframes/birch_beach_picture_frame" - }, - "frame_motive=11,facing=east": { - "model": "beautify:block/pictureframes/birch_beach_picture_frame", - "y": 90 - }, - "frame_motive=11,facing=south": { - "model": "beautify:block/pictureframes/birch_beach_picture_frame", - "y": 180 - }, - "frame_motive=11,facing=west": { - "model": "beautify:block/pictureframes/birch_beach_picture_frame", - "y": 270 - }, - "frame_motive=12,facing=north": { - "model": "beautify:block/pictureframes/birch_frog_picture_frame" - }, - "frame_motive=12,facing=east": { - "model": "beautify:block/pictureframes/birch_frog_picture_frame", - "y": 90 - }, - "frame_motive=12,facing=south": { - "model": "beautify:block/pictureframes/birch_frog_picture_frame", - "y": 180 - }, - "frame_motive=12,facing=west": { - "model": "beautify:block/pictureframes/birch_frog_picture_frame", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/birch_trellis.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/birch_trellis.json deleted file mode 100644 index ff9aaabc..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/birch_trellis.json +++ /dev/null @@ -1,247 +0,0 @@ -{ - "variants": { - "ceilling=false,facing=north,flowers=0": { - "model": "beautify:block/trellis/birch/closed_trellis", - "y": 270 - }, - "ceilling=false,facing=east,flowers=0": { - "model": "beautify:block/trellis/birch/closed_trellis" - }, - "ceilling=false,facing=south,flowers=0": { - "model": "beautify:block/trellis/birch/closed_trellis", - "y": 90 - }, - "ceilling=false,facing=west,flowers=0": { - "model": "beautify:block/trellis/birch/closed_trellis", - "y": 180 - }, - "ceilling=true,facing=north,flowers=0": { - "model": "beautify:block/trellis/birch/open_trellis" - }, - "ceilling=true,facing=east,flowers=0": { - "model": "beautify:block/trellis/birch/open_trellis" - }, - "ceilling=true,facing=south,flowers=0": { - "model": "beautify:block/trellis/birch/open_trellis" - }, - "ceilling=true,facing=west,flowers=0": { - "model": "beautify:block/trellis/birch/open_trellis" - }, - "ceilling=false,facing=north,flowers=1": { - "model": "beautify:block/trellis/birch/closed_trellis_rose", - "y": 270 - }, - "ceilling=false,facing=east,flowers=1": { - "model": "beautify:block/trellis/birch/closed_trellis_rose" - }, - "ceilling=false,facing=south,flowers=1": { - "model": "beautify:block/trellis/birch/closed_trellis_rose", - "y": 90 - }, - "ceilling=false,facing=west,flowers=1": { - "model": "beautify:block/trellis/birch/closed_trellis_rose", - "y": 180 - }, - "ceilling=true,facing=north,flowers=1": { - "model": "beautify:block/trellis/birch/open_trellis_rose" - }, - "ceilling=true,facing=east,flowers=1": { - "model": "beautify:block/trellis/birch/open_trellis_rose" - }, - "ceilling=true,facing=south,flowers=1": { - "model": "beautify:block/trellis/birch/open_trellis_rose" - }, - "ceilling=true,facing=west,flowers=1": { - "model": "beautify:block/trellis/birch/open_trellis_rose" - }, - "ceilling=false,facing=north,flowers=2": { - "model": "beautify:block/trellis/birch/closed_trellis_sunflower", - "y": 270 - }, - "ceilling=false,facing=east,flowers=2": { - "model": "beautify:block/trellis/birch/closed_trellis_sunflower" - }, - "ceilling=false,facing=south,flowers=2": { - "model": "beautify:block/trellis/birch/closed_trellis_sunflower", - "y": 90 - }, - "ceilling=false,facing=west,flowers=2": { - "model": "beautify:block/trellis/birch/closed_trellis_sunflower", - "y": 180 - }, - "ceilling=true,facing=north,flowers=2": { - "model": "beautify:block/trellis/birch/open_trellis_sunflower" - }, - "ceilling=true,facing=east,flowers=2": { - "model": "beautify:block/trellis/birch/open_trellis_sunflower" - }, - "ceilling=true,facing=south,flowers=2": { - "model": "beautify:block/trellis/birch/open_trellis_sunflower" - }, - "ceilling=true,facing=west,flowers=2": { - "model": "beautify:block/trellis/birch/open_trellis_sunflower" - }, - "ceilling=false,facing=north,flowers=3": { - "model": "beautify:block/trellis/birch/closed_trellis_peony", - "y": 270 - }, - "ceilling=false,facing=east,flowers=3": { - "model": "beautify:block/trellis/birch/closed_trellis_peony" - }, - "ceilling=false,facing=south,flowers=3": { - "model": "beautify:block/trellis/birch/closed_trellis_peony", - "y": 90 - }, - "ceilling=false,facing=west,flowers=3": { - "model": "beautify:block/trellis/birch/closed_trellis_peony", - "y": 180 - }, - "ceilling=true,facing=north,flowers=3": { - "model": "beautify:block/trellis/birch/open_trellis_peony" - }, - "ceilling=true,facing=east,flowers=3": { - "model": "beautify:block/trellis/birch/open_trellis_peony" - }, - "ceilling=true,facing=south,flowers=3": { - "model": "beautify:block/trellis/birch/open_trellis_peony" - }, - "ceilling=true,facing=west,flowers=3": { - "model": "beautify:block/trellis/birch/open_trellis_peony" - }, - "ceilling=false,facing=north,flowers=4": { - "model": "beautify:block/trellis/birch/closed_trellis_lilac", - "y": 270 - }, - "ceilling=false,facing=east,flowers=4": { - "model": "beautify:block/trellis/birch/closed_trellis_lilac" - }, - "ceilling=false,facing=south,flowers=4": { - "model": "beautify:block/trellis/birch/closed_trellis_lilac", - "y": 90 - }, - "ceilling=false,facing=west,flowers=4": { - "model": "beautify:block/trellis/birch/closed_trellis_lilac", - "y": 180 - }, - "ceilling=true,facing=north,flowers=4": { - "model": "beautify:block/trellis/birch/open_trellis_lilac" - }, - "ceilling=true,facing=east,flowers=4": { - "model": "beautify:block/trellis/birch/open_trellis_lilac" - }, - "ceilling=true,facing=south,flowers=4": { - "model": "beautify:block/trellis/birch/open_trellis_lilac" - }, - "ceilling=true,facing=west,flowers=4": { - "model": "beautify:block/trellis/birch/open_trellis_lilac" - }, - "ceilling=false,facing=north,flowers=5": { - "model": "beautify:block/trellis/birch/closed_trellis_vine", - "y": 270 - }, - "ceilling=false,facing=east,flowers=5": { - "model": "beautify:block/trellis/birch/closed_trellis_vine" - }, - "ceilling=false,facing=south,flowers=5": { - "model": "beautify:block/trellis/birch/closed_trellis_vine", - "y": 90 - }, - "ceilling=false,facing=west,flowers=5": { - "model": "beautify:block/trellis/birch/closed_trellis_vine", - "y": 180 - }, - "ceilling=true,facing=north,flowers=5": { - "model": "beautify:block/trellis/birch/open_trellis_vine" - }, - "ceilling=true,facing=east,flowers=5": { - "model": "beautify:block/trellis/birch/open_trellis_vine" - }, - "ceilling=true,facing=south,flowers=5": { - "model": "beautify:block/trellis/birch/open_trellis_vine" - }, - "ceilling=true,facing=west,flowers=5": { - "model": "beautify:block/trellis/birch/open_trellis_vine" - }, - "ceilling=false,facing=north,flowers=6": { - "model": "beautify:block/trellis/birch/closed_trellis_weeping_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=6": { - "model": "beautify:block/trellis/birch/closed_trellis_weeping_vines" - }, - "ceilling=false,facing=south,flowers=6": { - "model": "beautify:block/trellis/birch/closed_trellis_weeping_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=6": { - "model": "beautify:block/trellis/birch/closed_trellis_weeping_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=6": { - "model": "beautify:block/trellis/birch/open_trellis_weeping_vines" - }, - "ceilling=true,facing=east,flowers=6": { - "model": "beautify:block/trellis/birch/open_trellis_weeping_vines" - }, - "ceilling=true,facing=south,flowers=6": { - "model": "beautify:block/trellis/birch/open_trellis_weeping_vines" - }, - "ceilling=true,facing=west,flowers=6": { - "model": "beautify:block/trellis/birch/open_trellis_weeping_vines" - }, - "ceilling=false,facing=north,flowers=7": { - "model": "beautify:block/trellis/birch/closed_trellis_twisting_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=7": { - "model": "beautify:block/trellis/birch/closed_trellis_twisting_vines" - }, - "ceilling=false,facing=south,flowers=7": { - "model": "beautify:block/trellis/birch/closed_trellis_twisting_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=7": { - "model": "beautify:block/trellis/birch/closed_trellis_twisting_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=7": { - "model": "beautify:block/trellis/birch/open_trellis_twisting_vines" - }, - "ceilling=true,facing=east,flowers=7": { - "model": "beautify:block/trellis/birch/open_trellis_twisting_vines" - }, - "ceilling=true,facing=south,flowers=7": { - "model": "beautify:block/trellis/birch/open_trellis_twisting_vines" - }, - "ceilling=true,facing=west,flowers=7": { - "model": "beautify:block/trellis/birch/open_trellis_twisting_vines" - }, - "ceilling=false,facing=north,flowers=8": { - "model": "beautify:block/trellis/birch/closed_trellis_lichen", - "y": 270 - }, - "ceilling=false,facing=east,flowers=8": { - "model": "beautify:block/trellis/birch/closed_trellis_lichen" - }, - "ceilling=false,facing=south,flowers=8": { - "model": "beautify:block/trellis/birch/closed_trellis_lichen", - "y": 90 - }, - "ceilling=false,facing=west,flowers=8": { - "model": "beautify:block/trellis/birch/closed_trellis_lichen", - "y": 180 - }, - "ceilling=true,facing=north,flowers=8": { - "model": "beautify:block/trellis/birch/open_trellis_lichen" - }, - "ceilling=true,facing=east,flowers=8": { - "model": "beautify:block/trellis/birch/open_trellis_lichen" - }, - "ceilling=true,facing=south,flowers=8": { - "model": "beautify:block/trellis/birch/open_trellis_lichen" - }, - "ceilling=true,facing=west,flowers=8": { - "model": "beautify:block/trellis/birch/open_trellis_lichen" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/bookstack.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/bookstack.json deleted file mode 100644 index 649922db..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/bookstack.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "variants": { - "bookstack_model=0,facing=north": { - "model": "beautify:block/bookstacks/bookstack_0" - }, - "bookstack_model=0,facing=east": { - "model": "beautify:block/bookstacks/bookstack_0", - "y": 90 - }, - "bookstack_model=0,facing=south": { - "model": "beautify:block/bookstacks/bookstack_0", - "y": 180 - }, - "bookstack_model=0,facing=west": { - "model": "beautify:block/bookstacks/bookstack_0", - "y": 270 - }, - "bookstack_model=1,facing=north": { - "model": "beautify:block/bookstacks/bookstack_1" - }, - "bookstack_model=1,facing=east": { - "model": "beautify:block/bookstacks/bookstack_1", - "y": 90 - }, - "bookstack_model=1,facing=south": { - "model": "beautify:block/bookstacks/bookstack_1", - "y": 180 - }, - "bookstack_model=1,facing=west": { - "model": "beautify:block/bookstacks/bookstack_1", - "y": 270 - }, - "bookstack_model=2,facing=north": { - "model": "beautify:block/bookstacks/bookstack_2" - }, - "bookstack_model=2,facing=east": { - "model": "beautify:block/bookstacks/bookstack_2", - "y": 90 - }, - "bookstack_model=2,facing=south": { - "model": "beautify:block/bookstacks/bookstack_2", - "y": 180 - }, - "bookstack_model=2,facing=west": { - "model": "beautify:block/bookstacks/bookstack_2", - "y": 270 - }, - "bookstack_model=3,facing=north": { - "model": "beautify:block/bookstacks/bookstack_3" - }, - "bookstack_model=3,facing=east": { - "model": "beautify:block/bookstacks/bookstack_3", - "y": 90 - }, - "bookstack_model=3,facing=south": { - "model": "beautify:block/bookstacks/bookstack_3", - "y": 180 - }, - "bookstack_model=3,facing=west": { - "model": "beautify:block/bookstacks/bookstack_3", - "y": 270 - }, - "bookstack_model=4,facing=north": { - "model": "beautify:block/bookstacks/bookstack_4" - }, - "bookstack_model=4,facing=east": { - "model": "beautify:block/bookstacks/bookstack_4", - "y": 90 - }, - "bookstack_model=4,facing=south": { - "model": "beautify:block/bookstacks/bookstack_4", - "y": 180 - }, - "bookstack_model=4,facing=west": { - "model": "beautify:block/bookstacks/bookstack_4", - "y": 270 - }, - "bookstack_model=5,facing=north": { - "model": "beautify:block/bookstacks/bookstack_5" - }, - "bookstack_model=5,facing=east": { - "model": "beautify:block/bookstacks/bookstack_5", - "y": 90 - }, - "bookstack_model=5,facing=south": { - "model": "beautify:block/bookstacks/bookstack_5", - "y": 180 - }, - "bookstack_model=5,facing=west": { - "model": "beautify:block/bookstacks/bookstack_5", - "y": 270 - }, - "bookstack_model=6,facing=north": { - "model": "beautify:block/bookstacks/bookstack_6" - }, - "bookstack_model=6,facing=east": { - "model": "beautify:block/bookstacks/bookstack_6", - "y": 90 - }, - "bookstack_model=6,facing=south": { - "model": "beautify:block/bookstacks/bookstack_6", - "y": 180 - }, - "bookstack_model=6,facing=west": { - "model": "beautify:block/bookstacks/bookstack_6", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/botanist_workbench.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/botanist_workbench.json deleted file mode 100644 index 18154a5c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/botanist_workbench.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "variants": { - "facing=north": { - "model": "beautify:block/botanist_workbench" - }, - "facing=east": { - "model": "beautify:block/botanist_workbench", - "y": 90 - }, - "facing=south": { - "model": "beautify:block/botanist_workbench", - "y": 180 - }, - "facing=west": { - "model": "beautify:block/botanist_workbench", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/cherry_blinds.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/cherry_blinds.json deleted file mode 100644 index d87e2669..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/cherry_blinds.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "variants": { - "open=false,facing=north,hidden=false": { - "model": "beautify:block/blinds/cherry_blinds_up" - }, - "open=false,facing=east,hidden=false": { - "model": "beautify:block/blinds/cherry_blinds_up", - "y": 90 - }, - "open=false,facing=south,hidden=false": { - "model": "beautify:block/blinds/cherry_blinds_up", - "y": 180 - }, - "open=false,facing=west,hidden=false": { - "model": "beautify:block/blinds/cherry_blinds_up", - "y": 270 - }, - "open=true,facing=north,hidden=false": { - "model": "beautify:block/blinds/cherry_blinds_down" - }, - "open=true,facing=east,hidden=false": { - "model": "beautify:block/blinds/cherry_blinds_down", - "y": 90 - }, - "open=true,facing=south,hidden=false": { - "model": "beautify:block/blinds/cherry_blinds_down", - "y": 180 - }, - "open=true,facing=west,hidden=false": { - "model": "beautify:block/blinds/cherry_blinds_down", - "y": 270 - }, - "hidden=true":{ - "model": "beautify:block/blinds/none" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/cherry_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/cherry_picture_frame.json deleted file mode 100644 index 7fc94bce..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/cherry_picture_frame.json +++ /dev/null @@ -1,199 +0,0 @@ -{ - "variants": { - "frame_motive=0,facing=north": { - "model": "beautify:block/pictureframes/cherry_sunset_picture_frame" - }, - "frame_motive=0,facing=east": { - "model": "beautify:block/pictureframes/cherry_sunset_picture_frame", - "y": 90 - }, - "frame_motive=0,facing=south": { - "model": "beautify:block/pictureframes/cherry_sunset_picture_frame", - "y": 180 - }, - "frame_motive=0,facing=west": { - "model": "beautify:block/pictureframes/cherry_sunset_picture_frame", - "y": 270 - }, - "frame_motive=1,facing=north": { - "model": "beautify:block/pictureframes/cherry_flower_picture_frame" - }, - "frame_motive=1,facing=east": { - "model": "beautify:block/pictureframes/cherry_flower_picture_frame", - "y": 90 - }, - "frame_motive=1,facing=south": { - "model": "beautify:block/pictureframes/cherry_flower_picture_frame", - "y": 180 - }, - "frame_motive=1,facing=west": { - "model": "beautify:block/pictureframes/cherry_flower_picture_frame", - "y": 270 - }, - "frame_motive=2,facing=north": { - "model": "beautify:block/pictureframes/cherry_wasteland_picture_frame" - }, - "frame_motive=2,facing=east": { - "model": "beautify:block/pictureframes/cherry_wasteland_picture_frame", - "y": 90 - }, - "frame_motive=2,facing=south": { - "model": "beautify:block/pictureframes/cherry_wasteland_picture_frame", - "y": 180 - }, - "frame_motive=2,facing=west": { - "model": "beautify:block/pictureframes/cherry_wasteland_picture_frame", - "y": 270 - }, - "frame_motive=3,facing=north": { - "model": "beautify:block/pictureframes/cherry_plant_picture_frame" - }, - "frame_motive=3,facing=east": { - "model": "beautify:block/pictureframes/cherry_plant_picture_frame", - "y": 90 - }, - "frame_motive=3,facing=south": { - "model": "beautify:block/pictureframes/cherry_plant_picture_frame", - "y": 180 - }, - "frame_motive=3,facing=west": { - "model": "beautify:block/pictureframes/cherry_plant_picture_frame", - "y": 270 - }, - "frame_motive=4,facing=north": { - "model": "beautify:block/pictureframes/cherry_kebab_picture_frame" - }, - "frame_motive=4,facing=east": { - "model": "beautify:block/pictureframes/cherry_kebab_picture_frame", - "y": 90 - }, - "frame_motive=4,facing=south": { - "model": "beautify:block/pictureframes/cherry_kebab_picture_frame", - "y": 180 - }, - "frame_motive=4,facing=west": { - "model": "beautify:block/pictureframes/cherry_kebab_picture_frame", - "y": 270 - }, - "frame_motive=5,facing=north": { - "model": "beautify:block/pictureframes/cherry_aztec2_picture_frame" - }, - "frame_motive=5,facing=east": { - "model": "beautify:block/pictureframes/cherry_aztec2_picture_frame", - "y": 90 - }, - "frame_motive=5,facing=south": { - "model": "beautify:block/pictureframes/cherry_aztec2_picture_frame", - "y": 180 - }, - "frame_motive=5,facing=west": { - "model": "beautify:block/pictureframes/cherry_aztec2_picture_frame", - "y": 270 - }, - "frame_motive=6,facing=north": { - "model": "beautify:block/pictureframes/cherry_aztec_picture_frame" - }, - "frame_motive=6,facing=east": { - "model": "beautify:block/pictureframes/cherry_aztec_picture_frame", - "y": 90 - }, - "frame_motive=6,facing=south": { - "model": "beautify:block/pictureframes/cherry_aztec_picture_frame", - "y": 180 - }, - "frame_motive=6,facing=west": { - "model": "beautify:block/pictureframes/cherry_aztec_picture_frame", - "y": 270 - }, - "frame_motive=7,facing=north": { - "model": "beautify:block/pictureframes/cherry_alban_picture_frame" - }, - "frame_motive=7,facing=east": { - "model": "beautify:block/pictureframes/cherry_alban_picture_frame", - "y": 90 - }, - "frame_motive=7,facing=south": { - "model": "beautify:block/pictureframes/cherry_alban_picture_frame", - "y": 180 - }, - "frame_motive=7,facing=west": { - "model": "beautify:block/pictureframes/cherry_alban_picture_frame", - "y": 270 - }, - "frame_motive=8,facing=north": { - "model": "beautify:block/pictureframes/cherry_bomb_picture_frame" - }, - "frame_motive=8,facing=east": { - "model": "beautify:block/pictureframes/cherry_bomb_picture_frame", - "y": 90 - }, - "frame_motive=8,facing=south": { - "model": "beautify:block/pictureframes/cherry_bomb_picture_frame", - "y": 180 - }, - "frame_motive=8,facing=west": { - "model": "beautify:block/pictureframes/cherry_bomb_picture_frame", - "y": 270 - }, - "frame_motive=9,facing=north": { - "model": "beautify:block/pictureframes/cherry_shroom_picture_frame" - }, - "frame_motive=9,facing=east": { - "model": "beautify:block/pictureframes/cherry_shroom_picture_frame", - "y": 90 - }, - "frame_motive=9,facing=south": { - "model": "beautify:block/pictureframes/cherry_shroom_picture_frame", - "y": 180 - }, - "frame_motive=9,facing=west": { - "model": "beautify:block/pictureframes/cherry_shroom_picture_frame", - "y": 270 - }, - "frame_motive=10,facing=north": { - "model": "beautify:block/pictureframes/cherry_river_picture_frame" - }, - "frame_motive=10,facing=east": { - "model": "beautify:block/pictureframes/cherry_river_picture_frame", - "y": 90 - }, - "frame_motive=10,facing=south": { - "model": "beautify:block/pictureframes/cherry_river_picture_frame", - "y": 180 - }, - "frame_motive=10,facing=west": { - "model": "beautify:block/pictureframes/cherry_river_picture_frame", - "y": 270 - }, - "frame_motive=11,facing=north": { - "model": "beautify:block/pictureframes/cherry_beach_picture_frame" - }, - "frame_motive=11,facing=east": { - "model": "beautify:block/pictureframes/cherry_beach_picture_frame", - "y": 90 - }, - "frame_motive=11,facing=south": { - "model": "beautify:block/pictureframes/cherry_beach_picture_frame", - "y": 180 - }, - "frame_motive=11,facing=west": { - "model": "beautify:block/pictureframes/cherry_beach_picture_frame", - "y": 270 - }, - "frame_motive=12,facing=north": { - "model": "beautify:block/pictureframes/cherry_frog_picture_frame" - }, - "frame_motive=12,facing=east": { - "model": "beautify:block/pictureframes/cherry_frog_picture_frame", - "y": 90 - }, - "frame_motive=12,facing=south": { - "model": "beautify:block/pictureframes/cherry_frog_picture_frame", - "y": 180 - }, - "frame_motive=12,facing=west": { - "model": "beautify:block/pictureframes/cherry_frog_picture_frame", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/cherry_trellis.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/cherry_trellis.json deleted file mode 100644 index 6bb19d87..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/cherry_trellis.json +++ /dev/null @@ -1,247 +0,0 @@ -{ - "variants": { - "ceilling=false,facing=north,flowers=0": { - "model": "beautify:block/trellis/cherry/closed_trellis", - "y": 270 - }, - "ceilling=false,facing=east,flowers=0": { - "model": "beautify:block/trellis/cherry/closed_trellis" - }, - "ceilling=false,facing=south,flowers=0": { - "model": "beautify:block/trellis/cherry/closed_trellis", - "y": 90 - }, - "ceilling=false,facing=west,flowers=0": { - "model": "beautify:block/trellis/cherry/closed_trellis", - "y": 180 - }, - "ceilling=true,facing=north,flowers=0": { - "model": "beautify:block/trellis/cherry/open_trellis" - }, - "ceilling=true,facing=east,flowers=0": { - "model": "beautify:block/trellis/cherry/open_trellis" - }, - "ceilling=true,facing=south,flowers=0": { - "model": "beautify:block/trellis/cherry/open_trellis" - }, - "ceilling=true,facing=west,flowers=0": { - "model": "beautify:block/trellis/cherry/open_trellis" - }, - "ceilling=false,facing=north,flowers=1": { - "model": "beautify:block/trellis/cherry/closed_trellis_rose", - "y": 270 - }, - "ceilling=false,facing=east,flowers=1": { - "model": "beautify:block/trellis/cherry/closed_trellis_rose" - }, - "ceilling=false,facing=south,flowers=1": { - "model": "beautify:block/trellis/cherry/closed_trellis_rose", - "y": 90 - }, - "ceilling=false,facing=west,flowers=1": { - "model": "beautify:block/trellis/cherry/closed_trellis_rose", - "y": 180 - }, - "ceilling=true,facing=north,flowers=1": { - "model": "beautify:block/trellis/cherry/open_trellis_rose" - }, - "ceilling=true,facing=east,flowers=1": { - "model": "beautify:block/trellis/cherry/open_trellis_rose" - }, - "ceilling=true,facing=south,flowers=1": { - "model": "beautify:block/trellis/cherry/open_trellis_rose" - }, - "ceilling=true,facing=west,flowers=1": { - "model": "beautify:block/trellis/cherry/open_trellis_rose" - }, - "ceilling=false,facing=north,flowers=2": { - "model": "beautify:block/trellis/cherry/closed_trellis_sunflower", - "y": 270 - }, - "ceilling=false,facing=east,flowers=2": { - "model": "beautify:block/trellis/cherry/closed_trellis_sunflower" - }, - "ceilling=false,facing=south,flowers=2": { - "model": "beautify:block/trellis/cherry/closed_trellis_sunflower", - "y": 90 - }, - "ceilling=false,facing=west,flowers=2": { - "model": "beautify:block/trellis/cherry/closed_trellis_sunflower", - "y": 180 - }, - "ceilling=true,facing=north,flowers=2": { - "model": "beautify:block/trellis/cherry/open_trellis_sunflower" - }, - "ceilling=true,facing=east,flowers=2": { - "model": "beautify:block/trellis/cherry/open_trellis_sunflower" - }, - "ceilling=true,facing=south,flowers=2": { - "model": "beautify:block/trellis/cherry/open_trellis_sunflower" - }, - "ceilling=true,facing=west,flowers=2": { - "model": "beautify:block/trellis/cherry/open_trellis_sunflower" - }, - "ceilling=false,facing=north,flowers=3": { - "model": "beautify:block/trellis/cherry/closed_trellis_peony", - "y": 270 - }, - "ceilling=false,facing=east,flowers=3": { - "model": "beautify:block/trellis/cherry/closed_trellis_peony" - }, - "ceilling=false,facing=south,flowers=3": { - "model": "beautify:block/trellis/cherry/closed_trellis_peony", - "y": 90 - }, - "ceilling=false,facing=west,flowers=3": { - "model": "beautify:block/trellis/cherry/closed_trellis_peony", - "y": 180 - }, - "ceilling=true,facing=north,flowers=3": { - "model": "beautify:block/trellis/cherry/open_trellis_peony" - }, - "ceilling=true,facing=east,flowers=3": { - "model": "beautify:block/trellis/cherry/open_trellis_peony" - }, - "ceilling=true,facing=south,flowers=3": { - "model": "beautify:block/trellis/cherry/open_trellis_peony" - }, - "ceilling=true,facing=west,flowers=3": { - "model": "beautify:block/trellis/cherry/open_trellis_peony" - }, - "ceilling=false,facing=north,flowers=4": { - "model": "beautify:block/trellis/cherry/closed_trellis_lilac", - "y": 270 - }, - "ceilling=false,facing=east,flowers=4": { - "model": "beautify:block/trellis/cherry/closed_trellis_lilac" - }, - "ceilling=false,facing=south,flowers=4": { - "model": "beautify:block/trellis/cherry/closed_trellis_lilac", - "y": 90 - }, - "ceilling=false,facing=west,flowers=4": { - "model": "beautify:block/trellis/cherry/closed_trellis_lilac", - "y": 180 - }, - "ceilling=true,facing=north,flowers=4": { - "model": "beautify:block/trellis/cherry/open_trellis_lilac" - }, - "ceilling=true,facing=east,flowers=4": { - "model": "beautify:block/trellis/cherry/open_trellis_lilac" - }, - "ceilling=true,facing=south,flowers=4": { - "model": "beautify:block/trellis/cherry/open_trellis_lilac" - }, - "ceilling=true,facing=west,flowers=4": { - "model": "beautify:block/trellis/cherry/open_trellis_lilac" - }, - "ceilling=false,facing=north,flowers=5": { - "model": "beautify:block/trellis/cherry/closed_trellis_vine", - "y": 270 - }, - "ceilling=false,facing=east,flowers=5": { - "model": "beautify:block/trellis/cherry/closed_trellis_vine" - }, - "ceilling=false,facing=south,flowers=5": { - "model": "beautify:block/trellis/cherry/closed_trellis_vine", - "y": 90 - }, - "ceilling=false,facing=west,flowers=5": { - "model": "beautify:block/trellis/cherry/closed_trellis_vine", - "y": 180 - }, - "ceilling=true,facing=north,flowers=5": { - "model": "beautify:block/trellis/cherry/open_trellis_vine" - }, - "ceilling=true,facing=east,flowers=5": { - "model": "beautify:block/trellis/cherry/open_trellis_vine" - }, - "ceilling=true,facing=south,flowers=5": { - "model": "beautify:block/trellis/cherry/open_trellis_vine" - }, - "ceilling=true,facing=west,flowers=5": { - "model": "beautify:block/trellis/cherry/open_trellis_vine" - }, - "ceilling=false,facing=north,flowers=6": { - "model": "beautify:block/trellis/cherry/closed_trellis_weeping_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=6": { - "model": "beautify:block/trellis/cherry/closed_trellis_weeping_vines" - }, - "ceilling=false,facing=south,flowers=6": { - "model": "beautify:block/trellis/cherry/closed_trellis_weeping_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=6": { - "model": "beautify:block/trellis/cherry/closed_trellis_weeping_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=6": { - "model": "beautify:block/trellis/cherry/open_trellis_weeping_vines" - }, - "ceilling=true,facing=east,flowers=6": { - "model": "beautify:block/trellis/cherry/open_trellis_weeping_vines" - }, - "ceilling=true,facing=south,flowers=6": { - "model": "beautify:block/trellis/cherry/open_trellis_weeping_vines" - }, - "ceilling=true,facing=west,flowers=6": { - "model": "beautify:block/trellis/cherry/open_trellis_weeping_vines" - }, - "ceilling=false,facing=north,flowers=7": { - "model": "beautify:block/trellis/cherry/closed_trellis_twisting_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=7": { - "model": "beautify:block/trellis/cherry/closed_trellis_twisting_vines" - }, - "ceilling=false,facing=south,flowers=7": { - "model": "beautify:block/trellis/cherry/closed_trellis_twisting_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=7": { - "model": "beautify:block/trellis/cherry/closed_trellis_twisting_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=7": { - "model": "beautify:block/trellis/cherry/open_trellis_twisting_vines" - }, - "ceilling=true,facing=east,flowers=7": { - "model": "beautify:block/trellis/cherry/open_trellis_twisting_vines" - }, - "ceilling=true,facing=south,flowers=7": { - "model": "beautify:block/trellis/cherry/open_trellis_twisting_vines" - }, - "ceilling=true,facing=west,flowers=7": { - "model": "beautify:block/trellis/cherry/open_trellis_twisting_vines" - }, - "ceilling=false,facing=north,flowers=8": { - "model": "beautify:block/trellis/cherry/closed_trellis_lichen", - "y": 270 - }, - "ceilling=false,facing=east,flowers=8": { - "model": "beautify:block/trellis/cherry/closed_trellis_lichen" - }, - "ceilling=false,facing=south,flowers=8": { - "model": "beautify:block/trellis/cherry/closed_trellis_lichen", - "y": 90 - }, - "ceilling=false,facing=west,flowers=8": { - "model": "beautify:block/trellis/cherry/closed_trellis_lichen", - "y": 180 - }, - "ceilling=true,facing=north,flowers=8": { - "model": "beautify:block/trellis/cherry/open_trellis_lichen" - }, - "ceilling=true,facing=east,flowers=8": { - "model": "beautify:block/trellis/cherry/open_trellis_lichen" - }, - "ceilling=true,facing=south,flowers=8": { - "model": "beautify:block/trellis/cherry/open_trellis_lichen" - }, - "ceilling=true,facing=west,flowers=8": { - "model": "beautify:block/trellis/cherry/open_trellis_lichen" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/crimson_blinds.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/crimson_blinds.json deleted file mode 100644 index 72eecf49..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/crimson_blinds.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "variants": { - "open=false,facing=north,hidden=false": { - "model": "beautify:block/blinds/crimson_blinds_up" - }, - "open=false,facing=east,hidden=false": { - "model": "beautify:block/blinds/crimson_blinds_up", - "y": 90 - }, - "open=false,facing=south,hidden=false": { - "model": "beautify:block/blinds/crimson_blinds_up", - "y": 180 - }, - "open=false,facing=west,hidden=false": { - "model": "beautify:block/blinds/crimson_blinds_up", - "y": 270 - }, - "open=true,facing=north,hidden=false": { - "model": "beautify:block/blinds/crimson_blinds_down" - }, - "open=true,facing=east,hidden=false": { - "model": "beautify:block/blinds/crimson_blinds_down", - "y": 90 - }, - "open=true,facing=south,hidden=false": { - "model": "beautify:block/blinds/crimson_blinds_down", - "y": 180 - }, - "open=true,facing=west,hidden=false": { - "model": "beautify:block/blinds/crimson_blinds_down", - "y": 270 - }, - "hidden=true":{ - "model": "beautify:block/blinds/none" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/crimson_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/crimson_picture_frame.json deleted file mode 100644 index 6462f1d7..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/crimson_picture_frame.json +++ /dev/null @@ -1,199 +0,0 @@ -{ - "variants": { - "frame_motive=0,facing=north": { - "model": "beautify:block/pictureframes/crimson_sunset_picture_frame" - }, - "frame_motive=0,facing=east": { - "model": "beautify:block/pictureframes/crimson_sunset_picture_frame", - "y": 90 - }, - "frame_motive=0,facing=south": { - "model": "beautify:block/pictureframes/crimson_sunset_picture_frame", - "y": 180 - }, - "frame_motive=0,facing=west": { - "model": "beautify:block/pictureframes/crimson_sunset_picture_frame", - "y": 270 - }, - "frame_motive=1,facing=north": { - "model": "beautify:block/pictureframes/crimson_flower_picture_frame" - }, - "frame_motive=1,facing=east": { - "model": "beautify:block/pictureframes/crimson_flower_picture_frame", - "y": 90 - }, - "frame_motive=1,facing=south": { - "model": "beautify:block/pictureframes/crimson_flower_picture_frame", - "y": 180 - }, - "frame_motive=1,facing=west": { - "model": "beautify:block/pictureframes/crimson_flower_picture_frame", - "y": 270 - }, - "frame_motive=2,facing=north": { - "model": "beautify:block/pictureframes/crimson_wasteland_picture_frame" - }, - "frame_motive=2,facing=east": { - "model": "beautify:block/pictureframes/crimson_wasteland_picture_frame", - "y": 90 - }, - "frame_motive=2,facing=south": { - "model": "beautify:block/pictureframes/crimson_wasteland_picture_frame", - "y": 180 - }, - "frame_motive=2,facing=west": { - "model": "beautify:block/pictureframes/crimson_wasteland_picture_frame", - "y": 270 - }, - "frame_motive=3,facing=north": { - "model": "beautify:block/pictureframes/crimson_plant_picture_frame" - }, - "frame_motive=3,facing=east": { - "model": "beautify:block/pictureframes/crimson_plant_picture_frame", - "y": 90 - }, - "frame_motive=3,facing=south": { - "model": "beautify:block/pictureframes/crimson_plant_picture_frame", - "y": 180 - }, - "frame_motive=3,facing=west": { - "model": "beautify:block/pictureframes/crimson_plant_picture_frame", - "y": 270 - }, - "frame_motive=4,facing=north": { - "model": "beautify:block/pictureframes/crimson_kebab_picture_frame" - }, - "frame_motive=4,facing=east": { - "model": "beautify:block/pictureframes/crimson_kebab_picture_frame", - "y": 90 - }, - "frame_motive=4,facing=south": { - "model": "beautify:block/pictureframes/crimson_kebab_picture_frame", - "y": 180 - }, - "frame_motive=4,facing=west": { - "model": "beautify:block/pictureframes/crimson_kebab_picture_frame", - "y": 270 - }, - "frame_motive=5,facing=north": { - "model": "beautify:block/pictureframes/crimson_aztec2_picture_frame" - }, - "frame_motive=5,facing=east": { - "model": "beautify:block/pictureframes/crimson_aztec2_picture_frame", - "y": 90 - }, - "frame_motive=5,facing=south": { - "model": "beautify:block/pictureframes/crimson_aztec2_picture_frame", - "y": 180 - }, - "frame_motive=5,facing=west": { - "model": "beautify:block/pictureframes/crimson_aztec2_picture_frame", - "y": 270 - }, - "frame_motive=6,facing=north": { - "model": "beautify:block/pictureframes/crimson_aztec_picture_frame" - }, - "frame_motive=6,facing=east": { - "model": "beautify:block/pictureframes/crimson_aztec_picture_frame", - "y": 90 - }, - "frame_motive=6,facing=south": { - "model": "beautify:block/pictureframes/crimson_aztec_picture_frame", - "y": 180 - }, - "frame_motive=6,facing=west": { - "model": "beautify:block/pictureframes/crimson_aztec_picture_frame", - "y": 270 - }, - "frame_motive=7,facing=north": { - "model": "beautify:block/pictureframes/crimson_alban_picture_frame" - }, - "frame_motive=7,facing=east": { - "model": "beautify:block/pictureframes/crimson_alban_picture_frame", - "y": 90 - }, - "frame_motive=7,facing=south": { - "model": "beautify:block/pictureframes/crimson_alban_picture_frame", - "y": 180 - }, - "frame_motive=7,facing=west": { - "model": "beautify:block/pictureframes/crimson_alban_picture_frame", - "y": 270 - }, - "frame_motive=8,facing=north": { - "model": "beautify:block/pictureframes/crimson_bomb_picture_frame" - }, - "frame_motive=8,facing=east": { - "model": "beautify:block/pictureframes/crimson_bomb_picture_frame", - "y": 90 - }, - "frame_motive=8,facing=south": { - "model": "beautify:block/pictureframes/crimson_bomb_picture_frame", - "y": 180 - }, - "frame_motive=8,facing=west": { - "model": "beautify:block/pictureframes/crimson_bomb_picture_frame", - "y": 270 - }, - "frame_motive=9,facing=north": { - "model": "beautify:block/pictureframes/crimson_shroom_picture_frame" - }, - "frame_motive=9,facing=east": { - "model": "beautify:block/pictureframes/crimson_shroom_picture_frame", - "y": 90 - }, - "frame_motive=9,facing=south": { - "model": "beautify:block/pictureframes/crimson_shroom_picture_frame", - "y": 180 - }, - "frame_motive=9,facing=west": { - "model": "beautify:block/pictureframes/crimson_shroom_picture_frame", - "y": 270 - }, - "frame_motive=10,facing=north": { - "model": "beautify:block/pictureframes/crimson_river_picture_frame" - }, - "frame_motive=10,facing=east": { - "model": "beautify:block/pictureframes/crimson_river_picture_frame", - "y": 90 - }, - "frame_motive=10,facing=south": { - "model": "beautify:block/pictureframes/crimson_river_picture_frame", - "y": 180 - }, - "frame_motive=10,facing=west": { - "model": "beautify:block/pictureframes/crimson_river_picture_frame", - "y": 270 - }, - "frame_motive=11,facing=north": { - "model": "beautify:block/pictureframes/crimson_beach_picture_frame" - }, - "frame_motive=11,facing=east": { - "model": "beautify:block/pictureframes/crimson_beach_picture_frame", - "y": 90 - }, - "frame_motive=11,facing=south": { - "model": "beautify:block/pictureframes/crimson_beach_picture_frame", - "y": 180 - }, - "frame_motive=11,facing=west": { - "model": "beautify:block/pictureframes/crimson_beach_picture_frame", - "y": 270 - }, - "frame_motive=12,facing=north": { - "model": "beautify:block/pictureframes/crimson_frog_picture_frame" - }, - "frame_motive=12,facing=east": { - "model": "beautify:block/pictureframes/crimson_frog_picture_frame", - "y": 90 - }, - "frame_motive=12,facing=south": { - "model": "beautify:block/pictureframes/crimson_frog_picture_frame", - "y": 180 - }, - "frame_motive=12,facing=west": { - "model": "beautify:block/pictureframes/crimson_frog_picture_frame", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/crimson_trellis.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/crimson_trellis.json deleted file mode 100644 index 2b5ff8aa..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/crimson_trellis.json +++ /dev/null @@ -1,247 +0,0 @@ -{ - "variants": { - "ceilling=false,facing=north,flowers=0": { - "model": "beautify:block/trellis/crimson/closed_trellis", - "y": 270 - }, - "ceilling=false,facing=east,flowers=0": { - "model": "beautify:block/trellis/crimson/closed_trellis" - }, - "ceilling=false,facing=south,flowers=0": { - "model": "beautify:block/trellis/crimson/closed_trellis", - "y": 90 - }, - "ceilling=false,facing=west,flowers=0": { - "model": "beautify:block/trellis/crimson/closed_trellis", - "y": 180 - }, - "ceilling=true,facing=north,flowers=0": { - "model": "beautify:block/trellis/crimson/open_trellis" - }, - "ceilling=true,facing=east,flowers=0": { - "model": "beautify:block/trellis/crimson/open_trellis" - }, - "ceilling=true,facing=south,flowers=0": { - "model": "beautify:block/trellis/crimson/open_trellis" - }, - "ceilling=true,facing=west,flowers=0": { - "model": "beautify:block/trellis/crimson/open_trellis" - }, - "ceilling=false,facing=north,flowers=1": { - "model": "beautify:block/trellis/crimson/closed_trellis_rose", - "y": 270 - }, - "ceilling=false,facing=east,flowers=1": { - "model": "beautify:block/trellis/crimson/closed_trellis_rose" - }, - "ceilling=false,facing=south,flowers=1": { - "model": "beautify:block/trellis/crimson/closed_trellis_rose", - "y": 90 - }, - "ceilling=false,facing=west,flowers=1": { - "model": "beautify:block/trellis/crimson/closed_trellis_rose", - "y": 180 - }, - "ceilling=true,facing=north,flowers=1": { - "model": "beautify:block/trellis/crimson/open_trellis_rose" - }, - "ceilling=true,facing=east,flowers=1": { - "model": "beautify:block/trellis/crimson/open_trellis_rose" - }, - "ceilling=true,facing=south,flowers=1": { - "model": "beautify:block/trellis/crimson/open_trellis_rose" - }, - "ceilling=true,facing=west,flowers=1": { - "model": "beautify:block/trellis/crimson/open_trellis_rose" - }, - "ceilling=false,facing=north,flowers=2": { - "model": "beautify:block/trellis/crimson/closed_trellis_sunflower", - "y": 270 - }, - "ceilling=false,facing=east,flowers=2": { - "model": "beautify:block/trellis/crimson/closed_trellis_sunflower" - }, - "ceilling=false,facing=south,flowers=2": { - "model": "beautify:block/trellis/crimson/closed_trellis_sunflower", - "y": 90 - }, - "ceilling=false,facing=west,flowers=2": { - "model": "beautify:block/trellis/crimson/closed_trellis_sunflower", - "y": 180 - }, - "ceilling=true,facing=north,flowers=2": { - "model": "beautify:block/trellis/crimson/open_trellis_sunflower" - }, - "ceilling=true,facing=east,flowers=2": { - "model": "beautify:block/trellis/crimson/open_trellis_sunflower" - }, - "ceilling=true,facing=south,flowers=2": { - "model": "beautify:block/trellis/crimson/open_trellis_sunflower" - }, - "ceilling=true,facing=west,flowers=2": { - "model": "beautify:block/trellis/crimson/open_trellis_sunflower" - }, - "ceilling=false,facing=north,flowers=3": { - "model": "beautify:block/trellis/crimson/closed_trellis_peony", - "y": 270 - }, - "ceilling=false,facing=east,flowers=3": { - "model": "beautify:block/trellis/crimson/closed_trellis_peony" - }, - "ceilling=false,facing=south,flowers=3": { - "model": "beautify:block/trellis/crimson/closed_trellis_peony", - "y": 90 - }, - "ceilling=false,facing=west,flowers=3": { - "model": "beautify:block/trellis/crimson/closed_trellis_peony", - "y": 180 - }, - "ceilling=true,facing=north,flowers=3": { - "model": "beautify:block/trellis/crimson/open_trellis_peony" - }, - "ceilling=true,facing=east,flowers=3": { - "model": "beautify:block/trellis/crimson/open_trellis_peony" - }, - "ceilling=true,facing=south,flowers=3": { - "model": "beautify:block/trellis/crimson/open_trellis_peony" - }, - "ceilling=true,facing=west,flowers=3": { - "model": "beautify:block/trellis/crimson/open_trellis_peony" - }, - "ceilling=false,facing=north,flowers=4": { - "model": "beautify:block/trellis/crimson/closed_trellis_lilac", - "y": 270 - }, - "ceilling=false,facing=east,flowers=4": { - "model": "beautify:block/trellis/crimson/closed_trellis_lilac" - }, - "ceilling=false,facing=south,flowers=4": { - "model": "beautify:block/trellis/crimson/closed_trellis_lilac", - "y": 90 - }, - "ceilling=false,facing=west,flowers=4": { - "model": "beautify:block/trellis/crimson/closed_trellis_lilac", - "y": 180 - }, - "ceilling=true,facing=north,flowers=4": { - "model": "beautify:block/trellis/crimson/open_trellis_lilac" - }, - "ceilling=true,facing=east,flowers=4": { - "model": "beautify:block/trellis/crimson/open_trellis_lilac" - }, - "ceilling=true,facing=south,flowers=4": { - "model": "beautify:block/trellis/crimson/open_trellis_lilac" - }, - "ceilling=true,facing=west,flowers=4": { - "model": "beautify:block/trellis/crimson/open_trellis_lilac" - }, - "ceilling=false,facing=north,flowers=5": { - "model": "beautify:block/trellis/crimson/closed_trellis_vine", - "y": 270 - }, - "ceilling=false,facing=east,flowers=5": { - "model": "beautify:block/trellis/crimson/closed_trellis_vine" - }, - "ceilling=false,facing=south,flowers=5": { - "model": "beautify:block/trellis/crimson/closed_trellis_vine", - "y": 90 - }, - "ceilling=false,facing=west,flowers=5": { - "model": "beautify:block/trellis/crimson/closed_trellis_vine", - "y": 180 - }, - "ceilling=true,facing=north,flowers=5": { - "model": "beautify:block/trellis/crimson/open_trellis_vine" - }, - "ceilling=true,facing=east,flowers=5": { - "model": "beautify:block/trellis/crimson/open_trellis_vine" - }, - "ceilling=true,facing=south,flowers=5": { - "model": "beautify:block/trellis/crimson/open_trellis_vine" - }, - "ceilling=true,facing=west,flowers=5": { - "model": "beautify:block/trellis/crimson/open_trellis_vine" - }, - "ceilling=false,facing=north,flowers=6": { - "model": "beautify:block/trellis/crimson/closed_trellis_weeping_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=6": { - "model": "beautify:block/trellis/crimson/closed_trellis_weeping_vines" - }, - "ceilling=false,facing=south,flowers=6": { - "model": "beautify:block/trellis/crimson/closed_trellis_weeping_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=6": { - "model": "beautify:block/trellis/crimson/closed_trellis_weeping_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=6": { - "model": "beautify:block/trellis/crimson/open_trellis_weeping_vines" - }, - "ceilling=true,facing=east,flowers=6": { - "model": "beautify:block/trellis/crimson/open_trellis_weeping_vines" - }, - "ceilling=true,facing=south,flowers=6": { - "model": "beautify:block/trellis/crimson/open_trellis_weeping_vines" - }, - "ceilling=true,facing=west,flowers=6": { - "model": "beautify:block/trellis/crimson/open_trellis_weeping_vines" - }, - "ceilling=false,facing=north,flowers=7": { - "model": "beautify:block/trellis/crimson/closed_trellis_twisting_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=7": { - "model": "beautify:block/trellis/crimson/closed_trellis_twisting_vines" - }, - "ceilling=false,facing=south,flowers=7": { - "model": "beautify:block/trellis/crimson/closed_trellis_twisting_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=7": { - "model": "beautify:block/trellis/crimson/closed_trellis_twisting_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=7": { - "model": "beautify:block/trellis/crimson/open_trellis_twisting_vines" - }, - "ceilling=true,facing=east,flowers=7": { - "model": "beautify:block/trellis/crimson/open_trellis_twisting_vines" - }, - "ceilling=true,facing=south,flowers=7": { - "model": "beautify:block/trellis/crimson/open_trellis_twisting_vines" - }, - "ceilling=true,facing=west,flowers=7": { - "model": "beautify:block/trellis/crimson/open_trellis_twisting_vines" - }, - "ceilling=false,facing=north,flowers=8": { - "model": "beautify:block/trellis/crimson/closed_trellis_lichen", - "y": 270 - }, - "ceilling=false,facing=east,flowers=8": { - "model": "beautify:block/trellis/crimson/closed_trellis_lichen" - }, - "ceilling=false,facing=south,flowers=8": { - "model": "beautify:block/trellis/crimson/closed_trellis_lichen", - "y": 90 - }, - "ceilling=false,facing=west,flowers=8": { - "model": "beautify:block/trellis/crimson/closed_trellis_lichen", - "y": 180 - }, - "ceilling=true,facing=north,flowers=8": { - "model": "beautify:block/trellis/crimson/open_trellis_lichen" - }, - "ceilling=true,facing=east,flowers=8": { - "model": "beautify:block/trellis/crimson/open_trellis_lichen" - }, - "ceilling=true,facing=south,flowers=8": { - "model": "beautify:block/trellis/crimson/open_trellis_lichen" - }, - "ceilling=true,facing=west,flowers=8": { - "model": "beautify:block/trellis/crimson/open_trellis_lichen" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/dark_oak_blinds.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/dark_oak_blinds.json deleted file mode 100644 index d110e35f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/dark_oak_blinds.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "variants": { - "open=false,facing=north,hidden=false": { - "model": "beautify:block/blinds/dark_oak_blinds_up" - }, - "open=false,facing=east,hidden=false": { - "model": "beautify:block/blinds/dark_oak_blinds_up", - "y": 90 - }, - "open=false,facing=south,hidden=false": { - "model": "beautify:block/blinds/dark_oak_blinds_up", - "y": 180 - }, - "open=false,facing=west,hidden=false": { - "model": "beautify:block/blinds/dark_oak_blinds_up", - "y": 270 - }, - "open=true,facing=north,hidden=false": { - "model": "beautify:block/blinds/dark_oak_blinds_down" - }, - "open=true,facing=east,hidden=false": { - "model": "beautify:block/blinds/dark_oak_blinds_down", - "y": 90 - }, - "open=true,facing=south,hidden=false": { - "model": "beautify:block/blinds/dark_oak_blinds_down", - "y": 180 - }, - "open=true,facing=west,hidden=false": { - "model": "beautify:block/blinds/dark_oak_blinds_down", - "y": 270 - }, - "hidden=true":{ - "model": "beautify:block/blinds/none" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/dark_oak_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/dark_oak_picture_frame.json deleted file mode 100644 index dc022f62..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/dark_oak_picture_frame.json +++ /dev/null @@ -1,199 +0,0 @@ -{ - "variants": { - "frame_motive=0,facing=north": { - "model": "beautify:block/pictureframes/dark_oak_sunset_picture_frame" - }, - "frame_motive=0,facing=east": { - "model": "beautify:block/pictureframes/dark_oak_sunset_picture_frame", - "y": 90 - }, - "frame_motive=0,facing=south": { - "model": "beautify:block/pictureframes/dark_oak_sunset_picture_frame", - "y": 180 - }, - "frame_motive=0,facing=west": { - "model": "beautify:block/pictureframes/dark_oak_sunset_picture_frame", - "y": 270 - }, - "frame_motive=1,facing=north": { - "model": "beautify:block/pictureframes/dark_oak_flower_picture_frame" - }, - "frame_motive=1,facing=east": { - "model": "beautify:block/pictureframes/dark_oak_flower_picture_frame", - "y": 90 - }, - "frame_motive=1,facing=south": { - "model": "beautify:block/pictureframes/dark_oak_flower_picture_frame", - "y": 180 - }, - "frame_motive=1,facing=west": { - "model": "beautify:block/pictureframes/dark_oak_flower_picture_frame", - "y": 270 - }, - "frame_motive=2,facing=north": { - "model": "beautify:block/pictureframes/dark_oak_wasteland_picture_frame" - }, - "frame_motive=2,facing=east": { - "model": "beautify:block/pictureframes/dark_oak_wasteland_picture_frame", - "y": 90 - }, - "frame_motive=2,facing=south": { - "model": "beautify:block/pictureframes/dark_oak_wasteland_picture_frame", - "y": 180 - }, - "frame_motive=2,facing=west": { - "model": "beautify:block/pictureframes/dark_oak_wasteland_picture_frame", - "y": 270 - }, - "frame_motive=3,facing=north": { - "model": "beautify:block/pictureframes/dark_oak_plant_picture_frame" - }, - "frame_motive=3,facing=east": { - "model": "beautify:block/pictureframes/dark_oak_plant_picture_frame", - "y": 90 - }, - "frame_motive=3,facing=south": { - "model": "beautify:block/pictureframes/dark_oak_plant_picture_frame", - "y": 180 - }, - "frame_motive=3,facing=west": { - "model": "beautify:block/pictureframes/dark_oak_plant_picture_frame", - "y": 270 - }, - "frame_motive=4,facing=north": { - "model": "beautify:block/pictureframes/dark_oak_kebab_picture_frame" - }, - "frame_motive=4,facing=east": { - "model": "beautify:block/pictureframes/dark_oak_kebab_picture_frame", - "y": 90 - }, - "frame_motive=4,facing=south": { - "model": "beautify:block/pictureframes/dark_oak_kebab_picture_frame", - "y": 180 - }, - "frame_motive=4,facing=west": { - "model": "beautify:block/pictureframes/dark_oak_kebab_picture_frame", - "y": 270 - }, - "frame_motive=5,facing=north": { - "model": "beautify:block/pictureframes/dark_oak_aztec2_picture_frame" - }, - "frame_motive=5,facing=east": { - "model": "beautify:block/pictureframes/dark_oak_aztec2_picture_frame", - "y": 90 - }, - "frame_motive=5,facing=south": { - "model": "beautify:block/pictureframes/dark_oak_aztec2_picture_frame", - "y": 180 - }, - "frame_motive=5,facing=west": { - "model": "beautify:block/pictureframes/dark_oak_aztec2_picture_frame", - "y": 270 - }, - "frame_motive=6,facing=north": { - "model": "beautify:block/pictureframes/dark_oak_aztec_picture_frame" - }, - "frame_motive=6,facing=east": { - "model": "beautify:block/pictureframes/dark_oak_aztec_picture_frame", - "y": 90 - }, - "frame_motive=6,facing=south": { - "model": "beautify:block/pictureframes/dark_oak_aztec_picture_frame", - "y": 180 - }, - "frame_motive=6,facing=west": { - "model": "beautify:block/pictureframes/dark_oak_aztec_picture_frame", - "y": 270 - }, - "frame_motive=7,facing=north": { - "model": "beautify:block/pictureframes/dark_oak_alban_picture_frame" - }, - "frame_motive=7,facing=east": { - "model": "beautify:block/pictureframes/dark_oak_alban_picture_frame", - "y": 90 - }, - "frame_motive=7,facing=south": { - "model": "beautify:block/pictureframes/dark_oak_alban_picture_frame", - "y": 180 - }, - "frame_motive=7,facing=west": { - "model": "beautify:block/pictureframes/dark_oak_alban_picture_frame", - "y": 270 - }, - "frame_motive=8,facing=north": { - "model": "beautify:block/pictureframes/dark_oak_bomb_picture_frame" - }, - "frame_motive=8,facing=east": { - "model": "beautify:block/pictureframes/dark_oak_bomb_picture_frame", - "y": 90 - }, - "frame_motive=8,facing=south": { - "model": "beautify:block/pictureframes/dark_oak_bomb_picture_frame", - "y": 180 - }, - "frame_motive=8,facing=west": { - "model": "beautify:block/pictureframes/dark_oak_bomb_picture_frame", - "y": 270 - }, - "frame_motive=9,facing=north": { - "model": "beautify:block/pictureframes/dark_oak_shroom_picture_frame" - }, - "frame_motive=9,facing=east": { - "model": "beautify:block/pictureframes/dark_oak_shroom_picture_frame", - "y": 90 - }, - "frame_motive=9,facing=south": { - "model": "beautify:block/pictureframes/dark_oak_shroom_picture_frame", - "y": 180 - }, - "frame_motive=9,facing=west": { - "model": "beautify:block/pictureframes/dark_oak_shroom_picture_frame", - "y": 270 - }, - "frame_motive=10,facing=north": { - "model": "beautify:block/pictureframes/dark_oak_river_picture_frame" - }, - "frame_motive=10,facing=east": { - "model": "beautify:block/pictureframes/dark_oak_river_picture_frame", - "y": 90 - }, - "frame_motive=10,facing=south": { - "model": "beautify:block/pictureframes/dark_oak_river_picture_frame", - "y": 180 - }, - "frame_motive=10,facing=west": { - "model": "beautify:block/pictureframes/dark_oak_river_picture_frame", - "y": 270 - }, - "frame_motive=11,facing=north": { - "model": "beautify:block/pictureframes/dark_oak_beach_picture_frame" - }, - "frame_motive=11,facing=east": { - "model": "beautify:block/pictureframes/dark_oak_beach_picture_frame", - "y": 90 - }, - "frame_motive=11,facing=south": { - "model": "beautify:block/pictureframes/dark_oak_beach_picture_frame", - "y": 180 - }, - "frame_motive=11,facing=west": { - "model": "beautify:block/pictureframes/dark_oak_beach_picture_frame", - "y": 270 - }, - "frame_motive=12,facing=north": { - "model": "beautify:block/pictureframes/dark_oak_frog_picture_frame" - }, - "frame_motive=12,facing=east": { - "model": "beautify:block/pictureframes/dark_oak_frog_picture_frame", - "y": 90 - }, - "frame_motive=12,facing=south": { - "model": "beautify:block/pictureframes/dark_oak_frog_picture_frame", - "y": 180 - }, - "frame_motive=12,facing=west": { - "model": "beautify:block/pictureframes/dark_oak_frog_picture_frame", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/dark_oak_trellis.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/dark_oak_trellis.json deleted file mode 100644 index 0f3fff3e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/dark_oak_trellis.json +++ /dev/null @@ -1,247 +0,0 @@ -{ - "variants": { - "ceilling=false,facing=north,flowers=0": { - "model": "beautify:block/trellis/dark_oak/closed_trellis", - "y": 270 - }, - "ceilling=false,facing=east,flowers=0": { - "model": "beautify:block/trellis/dark_oak/closed_trellis" - }, - "ceilling=false,facing=south,flowers=0": { - "model": "beautify:block/trellis/dark_oak/closed_trellis", - "y": 90 - }, - "ceilling=false,facing=west,flowers=0": { - "model": "beautify:block/trellis/dark_oak/closed_trellis", - "y": 180 - }, - "ceilling=true,facing=north,flowers=0": { - "model": "beautify:block/trellis/dark_oak/open_trellis" - }, - "ceilling=true,facing=east,flowers=0": { - "model": "beautify:block/trellis/dark_oak/open_trellis" - }, - "ceilling=true,facing=south,flowers=0": { - "model": "beautify:block/trellis/dark_oak/open_trellis" - }, - "ceilling=true,facing=west,flowers=0": { - "model": "beautify:block/trellis/dark_oak/open_trellis" - }, - "ceilling=false,facing=north,flowers=1": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_rose", - "y": 270 - }, - "ceilling=false,facing=east,flowers=1": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_rose" - }, - "ceilling=false,facing=south,flowers=1": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_rose", - "y": 90 - }, - "ceilling=false,facing=west,flowers=1": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_rose", - "y": 180 - }, - "ceilling=true,facing=north,flowers=1": { - "model": "beautify:block/trellis/dark_oak/open_trellis_rose" - }, - "ceilling=true,facing=east,flowers=1": { - "model": "beautify:block/trellis/dark_oak/open_trellis_rose" - }, - "ceilling=true,facing=south,flowers=1": { - "model": "beautify:block/trellis/dark_oak/open_trellis_rose" - }, - "ceilling=true,facing=west,flowers=1": { - "model": "beautify:block/trellis/dark_oak/open_trellis_rose" - }, - "ceilling=false,facing=north,flowers=2": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_sunflower", - "y": 270 - }, - "ceilling=false,facing=east,flowers=2": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_sunflower" - }, - "ceilling=false,facing=south,flowers=2": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_sunflower", - "y": 90 - }, - "ceilling=false,facing=west,flowers=2": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_sunflower", - "y": 180 - }, - "ceilling=true,facing=north,flowers=2": { - "model": "beautify:block/trellis/dark_oak/open_trellis_sunflower" - }, - "ceilling=true,facing=east,flowers=2": { - "model": "beautify:block/trellis/dark_oak/open_trellis_sunflower" - }, - "ceilling=true,facing=south,flowers=2": { - "model": "beautify:block/trellis/dark_oak/open_trellis_sunflower" - }, - "ceilling=true,facing=west,flowers=2": { - "model": "beautify:block/trellis/dark_oak/open_trellis_sunflower" - }, - "ceilling=false,facing=north,flowers=3": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_peony", - "y": 270 - }, - "ceilling=false,facing=east,flowers=3": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_peony" - }, - "ceilling=false,facing=south,flowers=3": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_peony", - "y": 90 - }, - "ceilling=false,facing=west,flowers=3": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_peony", - "y": 180 - }, - "ceilling=true,facing=north,flowers=3": { - "model": "beautify:block/trellis/dark_oak/open_trellis_peony" - }, - "ceilling=true,facing=east,flowers=3": { - "model": "beautify:block/trellis/dark_oak/open_trellis_peony" - }, - "ceilling=true,facing=south,flowers=3": { - "model": "beautify:block/trellis/dark_oak/open_trellis_peony" - }, - "ceilling=true,facing=west,flowers=3": { - "model": "beautify:block/trellis/dark_oak/open_trellis_peony" - }, - "ceilling=false,facing=north,flowers=4": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_lilac", - "y": 270 - }, - "ceilling=false,facing=east,flowers=4": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_lilac" - }, - "ceilling=false,facing=south,flowers=4": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_lilac", - "y": 90 - }, - "ceilling=false,facing=west,flowers=4": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_lilac", - "y": 180 - }, - "ceilling=true,facing=north,flowers=4": { - "model": "beautify:block/trellis/dark_oak/open_trellis_lilac" - }, - "ceilling=true,facing=east,flowers=4": { - "model": "beautify:block/trellis/dark_oak/open_trellis_lilac" - }, - "ceilling=true,facing=south,flowers=4": { - "model": "beautify:block/trellis/dark_oak/open_trellis_lilac" - }, - "ceilling=true,facing=west,flowers=4": { - "model": "beautify:block/trellis/dark_oak/open_trellis_lilac" - }, - "ceilling=false,facing=north,flowers=5": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_vine", - "y": 270 - }, - "ceilling=false,facing=east,flowers=5": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_vine" - }, - "ceilling=false,facing=south,flowers=5": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_vine", - "y": 90 - }, - "ceilling=false,facing=west,flowers=5": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_vine", - "y": 180 - }, - "ceilling=true,facing=north,flowers=5": { - "model": "beautify:block/trellis/dark_oak/open_trellis_vine" - }, - "ceilling=true,facing=east,flowers=5": { - "model": "beautify:block/trellis/dark_oak/open_trellis_vine" - }, - "ceilling=true,facing=south,flowers=5": { - "model": "beautify:block/trellis/dark_oak/open_trellis_vine" - }, - "ceilling=true,facing=west,flowers=5": { - "model": "beautify:block/trellis/dark_oak/open_trellis_vine" - }, - "ceilling=false,facing=north,flowers=6": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_weeping_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=6": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_weeping_vines" - }, - "ceilling=false,facing=south,flowers=6": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_weeping_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=6": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_weeping_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=6": { - "model": "beautify:block/trellis/dark_oak/open_trellis_weeping_vines" - }, - "ceilling=true,facing=east,flowers=6": { - "model": "beautify:block/trellis/dark_oak/open_trellis_weeping_vines" - }, - "ceilling=true,facing=south,flowers=6": { - "model": "beautify:block/trellis/dark_oak/open_trellis_weeping_vines" - }, - "ceilling=true,facing=west,flowers=6": { - "model": "beautify:block/trellis/dark_oak/open_trellis_weeping_vines" - }, - "ceilling=false,facing=north,flowers=7": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_twisting_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=7": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_twisting_vines" - }, - "ceilling=false,facing=south,flowers=7": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_twisting_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=7": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_twisting_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=7": { - "model": "beautify:block/trellis/dark_oak/open_trellis_twisting_vines" - }, - "ceilling=true,facing=east,flowers=7": { - "model": "beautify:block/trellis/dark_oak/open_trellis_twisting_vines" - }, - "ceilling=true,facing=south,flowers=7": { - "model": "beautify:block/trellis/dark_oak/open_trellis_twisting_vines" - }, - "ceilling=true,facing=west,flowers=7": { - "model": "beautify:block/trellis/dark_oak/open_trellis_twisting_vines" - }, - "ceilling=false,facing=north,flowers=8": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_lichen", - "y": 270 - }, - "ceilling=false,facing=east,flowers=8": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_lichen" - }, - "ceilling=false,facing=south,flowers=8": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_lichen", - "y": 90 - }, - "ceilling=false,facing=west,flowers=8": { - "model": "beautify:block/trellis/dark_oak/closed_trellis_lichen", - "y": 180 - }, - "ceilling=true,facing=north,flowers=8": { - "model": "beautify:block/trellis/dark_oak/open_trellis_lichen" - }, - "ceilling=true,facing=east,flowers=8": { - "model": "beautify:block/trellis/dark_oak/open_trellis_lichen" - }, - "ceilling=true,facing=south,flowers=8": { - "model": "beautify:block/trellis/dark_oak/open_trellis_lichen" - }, - "ceilling=true,facing=west,flowers=8": { - "model": "beautify:block/trellis/dark_oak/open_trellis_lichen" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/hanging_pot.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/hanging_pot.json deleted file mode 100644 index 7f7bd223..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/hanging_pot.json +++ /dev/null @@ -1,341 +0,0 @@ -{ - "variants": { - "grown=false,hanging=true,potflower=0": { - "model": "beautify:block/pots/base/hanging_pot" - }, - "grown=false,hanging=false,potflower=0": { - "model": "beautify:block/pots/base/standing_pot" - }, - "grown=true,hanging=true,potflower=0": { - "model": "beautify:block/pots/base/hanging_pot" - }, - "grown=true,hanging=false,potflower=0": { - "model": "beautify:block/pots/base/standing_pot" - }, - - "grown=false,hanging=true,potflower=1": { - "model": "beautify:block/pots/rose/rose_pot" - }, - "grown=false,hanging=false,potflower=1": { - "model": "beautify:block/pots/rose/standing_rose_pot" - }, - "grown=true,hanging=true,potflower=1": { - "model": "beautify:block/pots/rose/rose_pot_grown" - }, - "grown=true,hanging=false,potflower=1": { - "model": "beautify:block/pots/rose/standing_rose_pot_grown" - }, - - "grown=false,hanging=true,potflower=2": { - "model": "beautify:block/pots/lilac/lilac_pot" - }, - "grown=false,hanging=false,potflower=2": { - "model": "beautify:block/pots/lilac/standing_lilac_pot" - }, - "grown=true,hanging=true,potflower=2": { - "model": "beautify:block/pots/lilac/lilac_pot_grown" - }, - "grown=true,hanging=false,potflower=2": { - "model": "beautify:block/pots/lilac/standing_lilac_pot_grown" - }, - - "grown=false,hanging=true,potflower=3": { - "model": "beautify:block/pots/orchid/orchid_pot" - }, - "grown=false,hanging=false,potflower=3": { - "model": "beautify:block/pots/orchid/standing_orchid_pot" - }, - "grown=true,hanging=true,potflower=3": { - "model": "beautify:block/pots/orchid/orchid_pot_grown" - }, - "grown=true,hanging=false,potflower=3": { - "model": "beautify:block/pots/orchid/standing_orchid_pot_grown" - }, - - "grown=false,hanging=true,potflower=4": { - "model": "beautify:block/pots/vine/vine_pot" - }, - "grown=false,hanging=false,potflower=4": { - "model": "beautify:block/pots/vine/standing_vine_pot" - }, - "grown=true,hanging=true,potflower=4": { - "model": "beautify:block/pots/vine/vine_pot_grown" - }, - "grown=true,hanging=false,potflower=4": { - "model": "beautify:block/pots/vine/standing_vine_pot_grown" - }, - - "grown=false,hanging=true,potflower=5": { - "model": "beautify:block/pots/sunflower/sunflower_pot" - }, - "grown=false,hanging=false,potflower=5": { - "model": "beautify:block/pots/sunflower/standing_sunflower_pot" - }, - "grown=true,hanging=true,potflower=5": { - "model": "beautify:block/pots/sunflower/sunflower_pot_grown" - }, - "grown=true,hanging=false,potflower=5": { - "model": "beautify:block/pots/sunflower/standing_sunflower_pot_grown" - }, - - "grown=false,hanging=true,potflower=6": { - "model": "beautify:block/pots/peony/peony_pot" - }, - "grown=false,hanging=false,potflower=6": { - "model": "beautify:block/pots/peony/standing_peony_pot" - }, - "grown=true,hanging=true,potflower=6": { - "model": "beautify:block/pots/peony/peony_pot_grown" - }, - "grown=true,hanging=false,potflower=6": { - "model": "beautify:block/pots/peony/standing_peony_pot_grown" - }, - - "grown=false,hanging=true,potflower=7": { - "model": "beautify:block/pots/azure_bluet/azure_bluet_pot" - }, - "grown=false,hanging=false,potflower=7": { - "model": "beautify:block/pots/azure_bluet/standing_azure_bluet_pot" - }, - "grown=true,hanging=true,potflower=7": { - "model": "beautify:block/pots/azure_bluet/azure_bluet_pot_grown" - }, - "grown=true,hanging=false,potflower=7": { - "model": "beautify:block/pots/azure_bluet/standing_azure_bluet_pot_grown" - }, - - "grown=false,hanging=true,potflower=8": { - "model": "beautify:block/pots/red_tulip/red_tulip_pot" - }, - "grown=false,hanging=false,potflower=8": { - "model": "beautify:block/pots/red_tulip/standing_red_tulip_pot" - }, - "grown=true,hanging=true,potflower=8": { - "model": "beautify:block/pots/red_tulip/red_tulip_pot_grown" - }, - "grown=true,hanging=false,potflower=8": { - "model": "beautify:block/pots/red_tulip/standing_red_tulip_pot_grown" - }, - - "grown=false,hanging=true,potflower=9": { - "model": "beautify:block/pots/orange_tulip/orange_tulip_pot" - }, - "grown=false,hanging=false,potflower=9": { - "model": "beautify:block/pots/orange_tulip/standing_orange_tulip_pot" - }, - "grown=true,hanging=true,potflower=9": { - "model": "beautify:block/pots/orange_tulip/orange_tulip_pot_grown" - }, - "grown=true,hanging=false,potflower=9": { - "model": "beautify:block/pots/orange_tulip/standing_orange_tulip_pot_grown" - }, - - "grown=false,hanging=true,potflower=10": { - "model": "beautify:block/pots/white_tulip/white_tulip_pot" - }, - "grown=false,hanging=false,potflower=10": { - "model": "beautify:block/pots/white_tulip/standing_white_tulip_pot" - }, - "grown=true,hanging=true,potflower=10": { - "model": "beautify:block/pots/white_tulip/white_tulip_pot_grown" - }, - "grown=true,hanging=false,potflower=10": { - "model": "beautify:block/pots/white_tulip/standing_white_tulip_pot_grown" - }, - - "grown=false,hanging=true,potflower=11": { - "model": "beautify:block/pots/pink_tulip/pink_tulip_pot" - }, - "grown=false,hanging=false,potflower=11": { - "model": "beautify:block/pots/pink_tulip/standing_pink_tulip_pot" - }, - "grown=true,hanging=true,potflower=11": { - "model": "beautify:block/pots/pink_tulip/pink_tulip_pot_grown" - }, - "grown=true,hanging=false,potflower=11": { - "model": "beautify:block/pots/pink_tulip/standing_pink_tulip_pot_grown" - }, - - "grown=false,hanging=true,potflower=12": { - "model": "beautify:block/pots/allium/allium_pot" - }, - "grown=false,hanging=false,potflower=12": { - "model": "beautify:block/pots/allium/standing_allium_pot" - }, - "grown=true,hanging=true,potflower=12": { - "model": "beautify:block/pots/allium/allium_pot_grown" - }, - "grown=true,hanging=false,potflower=12": { - "model": "beautify:block/pots/allium/standing_allium_pot_grown" - }, - - "grown=false,hanging=true,potflower=13": { - "model": "beautify:block/pots/dandelion/dandelion_pot" - }, - "grown=false,hanging=false,potflower=13": { - "model": "beautify:block/pots/dandelion/standing_dandelion_pot" - }, - "grown=true,hanging=true,potflower=13": { - "model": "beautify:block/pots/dandelion/dandelion_pot_grown" - }, - "grown=true,hanging=false,potflower=13": { - "model": "beautify:block/pots/dandelion/standing_dandelion_pot_grown" - }, - - "grown=false,hanging=true,potflower=14": { - "model": "beautify:block/pots/poppy/poppy_pot" - }, - "grown=false,hanging=false,potflower=14": { - "model": "beautify:block/pots/poppy/standing_poppy_pot" - }, - "grown=true,hanging=true,potflower=14": { - "model": "beautify:block/pots/poppy/poppy_pot_grown" - }, - "grown=true,hanging=false,potflower=14": { - "model": "beautify:block/pots/poppy/standing_poppy_pot_grown" - }, - - "grown=false,hanging=true,potflower=15": { - "model": "beautify:block/pots/glow_lichen/glow_lichen_pot" - }, - "grown=false,hanging=false,potflower=15": { - "model": "beautify:block/pots/glow_lichen/standing_glow_lichen_pot" - }, - "grown=true,hanging=true,potflower=15": { - "model": "beautify:block/pots/glow_lichen/glow_lichen_pot_grown" - }, - "grown=true,hanging=false,potflower=15": { - "model": "beautify:block/pots/glow_lichen/standing_glow_lichen_pot_grown" - }, - - "grown=false,hanging=true,potflower=16": { - "model": "beautify:block/pots/oxeye_daisy/oxeye_daisy_pot" - }, - "grown=false,hanging=false,potflower=16": { - "model": "beautify:block/pots/oxeye_daisy/standing_oxeye_daisy_pot" - }, - "grown=true,hanging=true,potflower=16": { - "model": "beautify:block/pots/oxeye_daisy/oxeye_daisy_pot_grown" - }, - "grown=true,hanging=false,potflower=16": { - "model": "beautify:block/pots/oxeye_daisy/standing_oxeye_daisy_pot_grown" - }, - - "grown=false,hanging=true,potflower=17": { - "model": "beautify:block/pots/lily/lily_pot" - }, - "grown=false,hanging=false,potflower=17": { - "model": "beautify:block/pots/lily/standing_lily_pot" - }, - "grown=true,hanging=true,potflower=17": { - "model": "beautify:block/pots/lily/lily_pot_grown" - }, - "grown=true,hanging=false,potflower=17": { - "model": "beautify:block/pots/lily/standing_lily_pot_grown" - }, - - "grown=false,hanging=true,potflower=18": { - "model": "beautify:block/pots/cornflower/cornflower_pot" - }, - "grown=false,hanging=false,potflower=18": { - "model": "beautify:block/pots/cornflower/standing_cornflower_pot" - }, - "grown=true,hanging=true,potflower=18": { - "model": "beautify:block/pots/cornflower/cornflower_pot_grown" - }, - "grown=true,hanging=false,potflower=18": { - "model": "beautify:block/pots/cornflower/standing_cornflower_pot_grown" - }, - - "grown=false,hanging=true,potflower=19": { - "model": "beautify:block/pots/weeping_vines/weeping_vines_pot" - }, - "grown=false,hanging=false,potflower=19": { - "model": "beautify:block/pots/weeping_vines/standing_weeping_vines_pot" - }, - "grown=true,hanging=true,potflower=19": { - "model": "beautify:block/pots/weeping_vines/weeping_vines_pot_grown" - }, - "grown=true,hanging=false,potflower=19": { - "model": "beautify:block/pots/weeping_vines/standing_weeping_vines_pot_grown" - }, - - "grown=false,hanging=true,potflower=20": { - "model": "beautify:block/pots/twisting_vines/twisting_vines_pot" - }, - "grown=false,hanging=false,potflower=20": { - "model": "beautify:block/pots/twisting_vines/standing_twisting_vines_pot" - }, - "grown=true,hanging=true,potflower=20": { - "model": "beautify:block/pots/twisting_vines/twisting_vines_pot_grown" - }, - "grown=true,hanging=false,potflower=20": { - "model": "beautify:block/pots/twisting_vines/standing_twisting_vines_pot_grown" - }, - - "grown=false,hanging=true,potflower=21": { - "model": "beautify:block/pots/wither_rose/wither_rose_pot" - }, - "grown=false,hanging=false,potflower=21": { - "model": "beautify:block/pots/wither_rose/standing_wither_rose_pot" - }, - "grown=true,hanging=true,potflower=21": { - "model": "beautify:block/pots/wither_rose/wither_rose_pot_grown" - }, - "grown=true,hanging=false,potflower=21": { - "model": "beautify:block/pots/wither_rose/standing_wither_rose_pot_grown" - }, - - "grown=false,hanging=true,potflower=22": { - "model": "beautify:block/pots/glowberry/glowberry_pot" - }, - "grown=false,hanging=false,potflower=22": { - "model": "beautify:block/pots/glowberry/standing_glowberry_pot" - }, - "grown=true,hanging=true,potflower=22": { - "model": "beautify:block/pots/glowberry/glowberry_pot_grown" - }, - "grown=true,hanging=false,potflower=22": { - "model": "beautify:block/pots/glowberry/standing_glowberry_pot_grown" - }, - - "grown=false,hanging=true,potflower=23": { - "model": "beautify:block/pots/berry/berry_pot" - }, - "grown=false,hanging=false,potflower=23": { - "model": "beautify:block/pots/berry/standing_berry_pot" - }, - "grown=true,hanging=true,potflower=23": { - "model": "beautify:block/pots/berry/berry_pot_grown" - }, - "grown=true,hanging=false,potflower=23": { - "model": "beautify:block/pots/berry/standing_berry_pot_grown" - }, - - "grown=false,hanging=true,potflower=24": { - "model": "beautify:block/pots/grass/grass_pot" - }, - "grown=false,hanging=false,potflower=24": { - "model": "beautify:block/pots/grass/standing_grass_pot" - }, - "grown=true,hanging=true,potflower=24": { - "model": "beautify:block/pots/grass/grass_pot_grown" - }, - "grown=true,hanging=false,potflower=24": { - "model": "beautify:block/pots/grass/standing_grass_pot_grown" - }, - - "grown=false,hanging=true,potflower=25": { - "model": "beautify:block/pots/fern/fern_pot" - }, - "grown=false,hanging=false,potflower=25": { - "model": "beautify:block/pots/fern/standing_fern_pot" - }, - "grown=true,hanging=true,potflower=25": { - "model": "beautify:block/pots/fern/fern_pot_grown" - }, - "grown=true,hanging=false,potflower=25": { - "model": "beautify:block/pots/fern/standing_fern_pot_grown" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/iron_blinds.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/iron_blinds.json deleted file mode 100644 index c1ea1fa6..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/iron_blinds.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "variants": { - "open=false,facing=north,hidden=false": { - "model": "beautify:block/blinds/iron_blinds_up" - }, - "open=false,facing=east,hidden=false": { - "model": "beautify:block/blinds/iron_blinds_up", - "y": 90 - }, - "open=false,facing=south,hidden=false": { - "model": "beautify:block/blinds/iron_blinds_up", - "y": 180 - }, - "open=false,facing=west,hidden=false": { - "model": "beautify:block/blinds/iron_blinds_up", - "y": 270 - }, - "open=true,facing=north,hidden=false": { - "model": "beautify:block/blinds/iron_blinds_down" - }, - "open=true,facing=east,hidden=false": { - "model": "beautify:block/blinds/iron_blinds_down", - "y": 90 - }, - "open=true,facing=south,hidden=false": { - "model": "beautify:block/blinds/iron_blinds_down", - "y": 180 - }, - "open=true,facing=west,hidden=false": { - "model": "beautify:block/blinds/iron_blinds_down", - "y": 270 - }, - "hidden=true":{ - "model": "beautify:block/blinds/none" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/jungle_blinds.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/jungle_blinds.json deleted file mode 100644 index 6ec9d9f6..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/jungle_blinds.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "variants": { - "open=false,facing=north,hidden=false": { - "model": "beautify:block/blinds/jungle_blinds_up" - }, - "open=false,facing=east,hidden=false": { - "model": "beautify:block/blinds/jungle_blinds_up", - "y": 90 - }, - "open=false,facing=south,hidden=false": { - "model": "beautify:block/blinds/jungle_blinds_up", - "y": 180 - }, - "open=false,facing=west,hidden=false": { - "model": "beautify:block/blinds/jungle_blinds_up", - "y": 270 - }, - "open=true,facing=north,hidden=false": { - "model": "beautify:block/blinds/jungle_blinds_down" - }, - "open=true,facing=east,hidden=false": { - "model": "beautify:block/blinds/jungle_blinds_down", - "y": 90 - }, - "open=true,facing=south,hidden=false": { - "model": "beautify:block/blinds/jungle_blinds_down", - "y": 180 - }, - "open=true,facing=west,hidden=false": { - "model": "beautify:block/blinds/jungle_blinds_down", - "y": 270 - }, - "hidden=true":{ - "model": "beautify:block/blinds/none" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/jungle_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/jungle_picture_frame.json deleted file mode 100644 index ba21c9e3..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/jungle_picture_frame.json +++ /dev/null @@ -1,199 +0,0 @@ -{ - "variants": { - "frame_motive=0,facing=north": { - "model": "beautify:block/pictureframes/jungle_sunset_picture_frame" - }, - "frame_motive=0,facing=east": { - "model": "beautify:block/pictureframes/jungle_sunset_picture_frame", - "y": 90 - }, - "frame_motive=0,facing=south": { - "model": "beautify:block/pictureframes/jungle_sunset_picture_frame", - "y": 180 - }, - "frame_motive=0,facing=west": { - "model": "beautify:block/pictureframes/jungle_sunset_picture_frame", - "y": 270 - }, - "frame_motive=1,facing=north": { - "model": "beautify:block/pictureframes/jungle_flower_picture_frame" - }, - "frame_motive=1,facing=east": { - "model": "beautify:block/pictureframes/jungle_flower_picture_frame", - "y": 90 - }, - "frame_motive=1,facing=south": { - "model": "beautify:block/pictureframes/jungle_flower_picture_frame", - "y": 180 - }, - "frame_motive=1,facing=west": { - "model": "beautify:block/pictureframes/jungle_flower_picture_frame", - "y": 270 - }, - "frame_motive=2,facing=north": { - "model": "beautify:block/pictureframes/jungle_wasteland_picture_frame" - }, - "frame_motive=2,facing=east": { - "model": "beautify:block/pictureframes/jungle_wasteland_picture_frame", - "y": 90 - }, - "frame_motive=2,facing=south": { - "model": "beautify:block/pictureframes/jungle_wasteland_picture_frame", - "y": 180 - }, - "frame_motive=2,facing=west": { - "model": "beautify:block/pictureframes/jungle_wasteland_picture_frame", - "y": 270 - }, - "frame_motive=3,facing=north": { - "model": "beautify:block/pictureframes/jungle_plant_picture_frame" - }, - "frame_motive=3,facing=east": { - "model": "beautify:block/pictureframes/jungle_plant_picture_frame", - "y": 90 - }, - "frame_motive=3,facing=south": { - "model": "beautify:block/pictureframes/jungle_plant_picture_frame", - "y": 180 - }, - "frame_motive=3,facing=west": { - "model": "beautify:block/pictureframes/jungle_plant_picture_frame", - "y": 270 - }, - "frame_motive=4,facing=north": { - "model": "beautify:block/pictureframes/jungle_kebab_picture_frame" - }, - "frame_motive=4,facing=east": { - "model": "beautify:block/pictureframes/jungle_kebab_picture_frame", - "y": 90 - }, - "frame_motive=4,facing=south": { - "model": "beautify:block/pictureframes/jungle_kebab_picture_frame", - "y": 180 - }, - "frame_motive=4,facing=west": { - "model": "beautify:block/pictureframes/jungle_kebab_picture_frame", - "y": 270 - }, - "frame_motive=5,facing=north": { - "model": "beautify:block/pictureframes/jungle_aztec2_picture_frame" - }, - "frame_motive=5,facing=east": { - "model": "beautify:block/pictureframes/jungle_aztec2_picture_frame", - "y": 90 - }, - "frame_motive=5,facing=south": { - "model": "beautify:block/pictureframes/jungle_aztec2_picture_frame", - "y": 180 - }, - "frame_motive=5,facing=west": { - "model": "beautify:block/pictureframes/jungle_aztec2_picture_frame", - "y": 270 - }, - "frame_motive=6,facing=north": { - "model": "beautify:block/pictureframes/jungle_aztec_picture_frame" - }, - "frame_motive=6,facing=east": { - "model": "beautify:block/pictureframes/jungle_aztec_picture_frame", - "y": 90 - }, - "frame_motive=6,facing=south": { - "model": "beautify:block/pictureframes/jungle_aztec_picture_frame", - "y": 180 - }, - "frame_motive=6,facing=west": { - "model": "beautify:block/pictureframes/jungle_aztec_picture_frame", - "y": 270 - }, - "frame_motive=7,facing=north": { - "model": "beautify:block/pictureframes/jungle_alban_picture_frame" - }, - "frame_motive=7,facing=east": { - "model": "beautify:block/pictureframes/jungle_alban_picture_frame", - "y": 90 - }, - "frame_motive=7,facing=south": { - "model": "beautify:block/pictureframes/jungle_alban_picture_frame", - "y": 180 - }, - "frame_motive=7,facing=west": { - "model": "beautify:block/pictureframes/jungle_alban_picture_frame", - "y": 270 - }, - "frame_motive=8,facing=north": { - "model": "beautify:block/pictureframes/jungle_bomb_picture_frame" - }, - "frame_motive=8,facing=east": { - "model": "beautify:block/pictureframes/jungle_bomb_picture_frame", - "y": 90 - }, - "frame_motive=8,facing=south": { - "model": "beautify:block/pictureframes/jungle_bomb_picture_frame", - "y": 180 - }, - "frame_motive=8,facing=west": { - "model": "beautify:block/pictureframes/jungle_bomb_picture_frame", - "y": 270 - }, - "frame_motive=9,facing=north": { - "model": "beautify:block/pictureframes/jungle_shroom_picture_frame" - }, - "frame_motive=9,facing=east": { - "model": "beautify:block/pictureframes/jungle_shroom_picture_frame", - "y": 90 - }, - "frame_motive=9,facing=south": { - "model": "beautify:block/pictureframes/jungle_shroom_picture_frame", - "y": 180 - }, - "frame_motive=9,facing=west": { - "model": "beautify:block/pictureframes/jungle_shroom_picture_frame", - "y": 270 - }, - "frame_motive=10,facing=north": { - "model": "beautify:block/pictureframes/jungle_river_picture_frame" - }, - "frame_motive=10,facing=east": { - "model": "beautify:block/pictureframes/jungle_river_picture_frame", - "y": 90 - }, - "frame_motive=10,facing=south": { - "model": "beautify:block/pictureframes/jungle_river_picture_frame", - "y": 180 - }, - "frame_motive=10,facing=west": { - "model": "beautify:block/pictureframes/jungle_river_picture_frame", - "y": 270 - }, - "frame_motive=11,facing=north": { - "model": "beautify:block/pictureframes/jungle_beach_picture_frame" - }, - "frame_motive=11,facing=east": { - "model": "beautify:block/pictureframes/jungle_beach_picture_frame", - "y": 90 - }, - "frame_motive=11,facing=south": { - "model": "beautify:block/pictureframes/jungle_beach_picture_frame", - "y": 180 - }, - "frame_motive=11,facing=west": { - "model": "beautify:block/pictureframes/jungle_beach_picture_frame", - "y": 270 - }, - "frame_motive=12,facing=north": { - "model": "beautify:block/pictureframes/jungle_frog_picture_frame" - }, - "frame_motive=12,facing=east": { - "model": "beautify:block/pictureframes/jungle_frog_picture_frame", - "y": 90 - }, - "frame_motive=12,facing=south": { - "model": "beautify:block/pictureframes/jungle_frog_picture_frame", - "y": 180 - }, - "frame_motive=12,facing=west": { - "model": "beautify:block/pictureframes/jungle_frog_picture_frame", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/jungle_trellis.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/jungle_trellis.json deleted file mode 100644 index de375ca9..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/jungle_trellis.json +++ /dev/null @@ -1,247 +0,0 @@ -{ - "variants": { - "ceilling=false,facing=north,flowers=0": { - "model": "beautify:block/trellis/jungle/closed_trellis", - "y": 270 - }, - "ceilling=false,facing=east,flowers=0": { - "model": "beautify:block/trellis/jungle/closed_trellis" - }, - "ceilling=false,facing=south,flowers=0": { - "model": "beautify:block/trellis/jungle/closed_trellis", - "y": 90 - }, - "ceilling=false,facing=west,flowers=0": { - "model": "beautify:block/trellis/jungle/closed_trellis", - "y": 180 - }, - "ceilling=true,facing=north,flowers=0": { - "model": "beautify:block/trellis/jungle/open_trellis" - }, - "ceilling=true,facing=east,flowers=0": { - "model": "beautify:block/trellis/jungle/open_trellis" - }, - "ceilling=true,facing=south,flowers=0": { - "model": "beautify:block/trellis/jungle/open_trellis" - }, - "ceilling=true,facing=west,flowers=0": { - "model": "beautify:block/trellis/jungle/open_trellis" - }, - "ceilling=false,facing=north,flowers=1": { - "model": "beautify:block/trellis/jungle/closed_trellis_rose", - "y": 270 - }, - "ceilling=false,facing=east,flowers=1": { - "model": "beautify:block/trellis/jungle/closed_trellis_rose" - }, - "ceilling=false,facing=south,flowers=1": { - "model": "beautify:block/trellis/jungle/closed_trellis_rose", - "y": 90 - }, - "ceilling=false,facing=west,flowers=1": { - "model": "beautify:block/trellis/jungle/closed_trellis_rose", - "y": 180 - }, - "ceilling=true,facing=north,flowers=1": { - "model": "beautify:block/trellis/jungle/open_trellis_rose" - }, - "ceilling=true,facing=east,flowers=1": { - "model": "beautify:block/trellis/jungle/open_trellis_rose" - }, - "ceilling=true,facing=south,flowers=1": { - "model": "beautify:block/trellis/jungle/open_trellis_rose" - }, - "ceilling=true,facing=west,flowers=1": { - "model": "beautify:block/trellis/jungle/open_trellis_rose" - }, - "ceilling=false,facing=north,flowers=2": { - "model": "beautify:block/trellis/jungle/closed_trellis_sunflower", - "y": 270 - }, - "ceilling=false,facing=east,flowers=2": { - "model": "beautify:block/trellis/jungle/closed_trellis_sunflower" - }, - "ceilling=false,facing=south,flowers=2": { - "model": "beautify:block/trellis/jungle/closed_trellis_sunflower", - "y": 90 - }, - "ceilling=false,facing=west,flowers=2": { - "model": "beautify:block/trellis/jungle/closed_trellis_sunflower", - "y": 180 - }, - "ceilling=true,facing=north,flowers=2": { - "model": "beautify:block/trellis/jungle/open_trellis_sunflower" - }, - "ceilling=true,facing=east,flowers=2": { - "model": "beautify:block/trellis/jungle/open_trellis_sunflower" - }, - "ceilling=true,facing=south,flowers=2": { - "model": "beautify:block/trellis/jungle/open_trellis_sunflower" - }, - "ceilling=true,facing=west,flowers=2": { - "model": "beautify:block/trellis/jungle/open_trellis_sunflower" - }, - "ceilling=false,facing=north,flowers=3": { - "model": "beautify:block/trellis/jungle/closed_trellis_peony", - "y": 270 - }, - "ceilling=false,facing=east,flowers=3": { - "model": "beautify:block/trellis/jungle/closed_trellis_peony" - }, - "ceilling=false,facing=south,flowers=3": { - "model": "beautify:block/trellis/jungle/closed_trellis_peony", - "y": 90 - }, - "ceilling=false,facing=west,flowers=3": { - "model": "beautify:block/trellis/jungle/closed_trellis_peony", - "y": 180 - }, - "ceilling=true,facing=north,flowers=3": { - "model": "beautify:block/trellis/jungle/open_trellis_peony" - }, - "ceilling=true,facing=east,flowers=3": { - "model": "beautify:block/trellis/jungle/open_trellis_peony" - }, - "ceilling=true,facing=south,flowers=3": { - "model": "beautify:block/trellis/jungle/open_trellis_peony" - }, - "ceilling=true,facing=west,flowers=3": { - "model": "beautify:block/trellis/jungle/open_trellis_peony" - }, - "ceilling=false,facing=north,flowers=4": { - "model": "beautify:block/trellis/jungle/closed_trellis_lilac", - "y": 270 - }, - "ceilling=false,facing=east,flowers=4": { - "model": "beautify:block/trellis/jungle/closed_trellis_lilac" - }, - "ceilling=false,facing=south,flowers=4": { - "model": "beautify:block/trellis/jungle/closed_trellis_lilac", - "y": 90 - }, - "ceilling=false,facing=west,flowers=4": { - "model": "beautify:block/trellis/jungle/closed_trellis_lilac", - "y": 180 - }, - "ceilling=true,facing=north,flowers=4": { - "model": "beautify:block/trellis/jungle/open_trellis_lilac" - }, - "ceilling=true,facing=east,flowers=4": { - "model": "beautify:block/trellis/jungle/open_trellis_lilac" - }, - "ceilling=true,facing=south,flowers=4": { - "model": "beautify:block/trellis/jungle/open_trellis_lilac" - }, - "ceilling=true,facing=west,flowers=4": { - "model": "beautify:block/trellis/jungle/open_trellis_lilac" - }, - "ceilling=false,facing=north,flowers=5": { - "model": "beautify:block/trellis/jungle/closed_trellis_vine", - "y": 270 - }, - "ceilling=false,facing=east,flowers=5": { - "model": "beautify:block/trellis/jungle/closed_trellis_vine" - }, - "ceilling=false,facing=south,flowers=5": { - "model": "beautify:block/trellis/jungle/closed_trellis_vine", - "y": 90 - }, - "ceilling=false,facing=west,flowers=5": { - "model": "beautify:block/trellis/jungle/closed_trellis_vine", - "y": 180 - }, - "ceilling=true,facing=north,flowers=5": { - "model": "beautify:block/trellis/jungle/open_trellis_vine" - }, - "ceilling=true,facing=east,flowers=5": { - "model": "beautify:block/trellis/jungle/open_trellis_vine" - }, - "ceilling=true,facing=south,flowers=5": { - "model": "beautify:block/trellis/jungle/open_trellis_vine" - }, - "ceilling=true,facing=west,flowers=5": { - "model": "beautify:block/trellis/jungle/open_trellis_vine" - }, - "ceilling=false,facing=north,flowers=6": { - "model": "beautify:block/trellis/jungle/closed_trellis_weeping_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=6": { - "model": "beautify:block/trellis/jungle/closed_trellis_weeping_vines" - }, - "ceilling=false,facing=south,flowers=6": { - "model": "beautify:block/trellis/jungle/closed_trellis_weeping_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=6": { - "model": "beautify:block/trellis/jungle/closed_trellis_weeping_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=6": { - "model": "beautify:block/trellis/jungle/open_trellis_weeping_vines" - }, - "ceilling=true,facing=east,flowers=6": { - "model": "beautify:block/trellis/jungle/open_trellis_weeping_vines" - }, - "ceilling=true,facing=south,flowers=6": { - "model": "beautify:block/trellis/jungle/open_trellis_weeping_vines" - }, - "ceilling=true,facing=west,flowers=6": { - "model": "beautify:block/trellis/jungle/open_trellis_weeping_vines" - }, - "ceilling=false,facing=north,flowers=7": { - "model": "beautify:block/trellis/jungle/closed_trellis_twisting_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=7": { - "model": "beautify:block/trellis/jungle/closed_trellis_twisting_vines" - }, - "ceilling=false,facing=south,flowers=7": { - "model": "beautify:block/trellis/jungle/closed_trellis_twisting_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=7": { - "model": "beautify:block/trellis/jungle/closed_trellis_twisting_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=7": { - "model": "beautify:block/trellis/jungle/open_trellis_twisting_vines" - }, - "ceilling=true,facing=east,flowers=7": { - "model": "beautify:block/trellis/jungle/open_trellis_twisting_vines" - }, - "ceilling=true,facing=south,flowers=7": { - "model": "beautify:block/trellis/jungle/open_trellis_twisting_vines" - }, - "ceilling=true,facing=west,flowers=7": { - "model": "beautify:block/trellis/jungle/open_trellis_twisting_vines" - }, - "ceilling=false,facing=north,flowers=8": { - "model": "beautify:block/trellis/jungle/closed_trellis_lichen", - "y": 270 - }, - "ceilling=false,facing=east,flowers=8": { - "model": "beautify:block/trellis/jungle/closed_trellis_lichen" - }, - "ceilling=false,facing=south,flowers=8": { - "model": "beautify:block/trellis/jungle/closed_trellis_lichen", - "y": 90 - }, - "ceilling=false,facing=west,flowers=8": { - "model": "beautify:block/trellis/jungle/closed_trellis_lichen", - "y": 180 - }, - "ceilling=true,facing=north,flowers=8": { - "model": "beautify:block/trellis/jungle/open_trellis_lichen" - }, - "ceilling=true,facing=east,flowers=8": { - "model": "beautify:block/trellis/jungle/open_trellis_lichen" - }, - "ceilling=true,facing=south,flowers=8": { - "model": "beautify:block/trellis/jungle/open_trellis_lichen" - }, - "ceilling=true,facing=west,flowers=8": { - "model": "beautify:block/trellis/jungle/open_trellis_lichen" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_bamboo.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_bamboo.json deleted file mode 100644 index 4d413c99..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_bamboo.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "hanging=true,on=true": { - "model": "beautify:block/lamps/lamp_bamboo" - }, - "hanging=false,on=true": { - "model": "beautify:block/lamps/standing_lamp_bamboo" - }, - "hanging=true,on=false": { - "model": "beautify:block/lamps/lamp_bamboo_off" - }, - "hanging=false,on=false": { - "model": "beautify:block/lamps/standing_lamp_bamboo_off" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra.json deleted file mode 100644 index 8a49a9c0..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_black.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_black.json deleted file mode 100644 index afe07459..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_black.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_black" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_black", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_black", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_black", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_black" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_black", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_black", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_black", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_black" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_black", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_black", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_black", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_black" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_black", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_black", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_black", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_blue.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_blue.json deleted file mode 100644 index 055c318d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_blue.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_blue" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_blue", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_blue", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_blue", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_blue" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_blue", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_blue", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_blue", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_blue" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_blue", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_blue", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_blue", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_blue" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_blue", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_blue", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_blue", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_brown.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_brown.json deleted file mode 100644 index 03408682..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_brown.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_brown" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_brown", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_brown", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_brown", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_brown" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_brown", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_brown", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_brown", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_brown" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_brown", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_brown", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_brown", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_brown" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_brown", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_brown", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_brown", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_cyan.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_cyan.json deleted file mode 100644 index 98baaeb8..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_cyan.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_cyan" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_cyan", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_cyan", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_cyan", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_cyan" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_cyan", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_cyan", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_cyan", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_cyan" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_cyan", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_cyan", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_cyan", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_cyan" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_cyan", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_cyan", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_cyan", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_gray.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_gray.json deleted file mode 100644 index 9d8de4cf..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_gray.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_gray" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_gray", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_gray", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_gray", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_gray" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_gray", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_gray", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_gray", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_gray" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_gray", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_gray", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_gray", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_gray" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_gray", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_gray", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_gray", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_green.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_green.json deleted file mode 100644 index c0d50f54..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_green.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_green" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_green", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_green", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_green", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_green" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_green", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_green", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_green", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_green" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_green", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_green", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_green", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_green" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_green", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_green", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_green", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_light_blue.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_light_blue.json deleted file mode 100644 index d647a6ed..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_light_blue.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_blue" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_blue", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_blue", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_blue", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_light_blue" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_light_blue", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_light_blue", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_light_blue", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_light_blue" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_light_blue", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_light_blue", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_light_blue", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_light_blue" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_light_blue", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_light_blue", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_light_blue", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_light_gray.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_light_gray.json deleted file mode 100644 index bd88a976..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_light_gray.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_gray" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_gray", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_gray", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_gray", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_light_gray" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_light_gray", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_light_gray", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_light_gray", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_light_gray" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_light_gray", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_light_gray", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_light_gray", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_light_gray" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_light_gray", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_light_gray", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_light_gray", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_lime.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_lime.json deleted file mode 100644 index 9a3884be..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_lime.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_lime" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_lime", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_lime", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_lime", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_lime" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_lime", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_lime", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_lime", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_lime" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_lime", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_lime", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_lime", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_lime" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_lime", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_lime", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_lime", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_magenta.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_magenta.json deleted file mode 100644 index c08503ed..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_magenta.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_magenta" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_magenta", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_magenta", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_magenta", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_magenta" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_magenta", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_magenta", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_magenta", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_magenta" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_magenta", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_magenta", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_magenta", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_magenta" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_magenta", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_magenta", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_magenta", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_orange.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_orange.json deleted file mode 100644 index 65ad910f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_orange.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_orange" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_orange", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_orange", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_orange", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_orange" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_orange", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_orange", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_orange", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_orange" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_orange", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_orange", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_orange", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_orange" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_orange", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_orange", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_orange", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_pink.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_pink.json deleted file mode 100644 index 64ef7999..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_pink.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_pink" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_pink", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_pink", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_pink", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_pink" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_pink", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_pink", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_pink", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_pink" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_pink", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_pink", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_pink", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_pink" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_pink", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_pink", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_pink", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_purple.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_purple.json deleted file mode 100644 index da370a7a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_purple.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_purple" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_purple", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_purple", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_purple", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_purple" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_purple", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_purple", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_purple", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_purple" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_purple", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_purple", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_purple", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_purple" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_purple", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_purple", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_purple", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_red.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_red.json deleted file mode 100644 index ffc3076c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_red.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_red" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_red", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_red", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_red", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_red" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_red", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_red", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_red", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_red" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_red", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_red", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_red", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_red" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_red", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_red", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_red", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_white.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_white.json deleted file mode 100644 index f90fe35d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_white.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_white" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_white", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_white", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_white", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_white" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_white", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_white", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_white", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_white" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_white", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_white", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_white", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_white" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_white", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_white", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_white", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_yellow.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_yellow.json deleted file mode 100644 index 3c0ccc5c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_candleabra_yellow.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_yellow" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_yellow", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_yellow", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_yellow", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_yellow" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_yellow", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_yellow", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_yellow", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_yellow" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_yellow", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_yellow", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_yellow", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_yellow" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_yellow", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_yellow", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_yellow", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_jar.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_jar.json deleted file mode 100644 index a404c940..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_jar.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "hanging=true": { - "model": "beautify:block/lamps/lamp_jar" - }, - "hanging=false": { - "model": "beautify:block/lamps/standing_lamp_jar" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_light_bulb.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_light_bulb.json deleted file mode 100644 index c2101967..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/lamp_light_bulb.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "hanging=true,on=true": { - "model": "beautify:block/lamps/light_bulb" - }, - "hanging=false,on=true": { - "model": "beautify:block/lamps/standing_light_bulb" - }, - "hanging=true,on=false": { - "model": "beautify:block/lamps/light_bulb_off" - }, - "hanging=false,on=false": { - "model": "beautify:block/lamps/standing_light_bulb_off" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/mangrove_blinds.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/mangrove_blinds.json deleted file mode 100644 index 688f74fd..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/mangrove_blinds.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "variants": { - "open=false,facing=north,hidden=false": { - "model": "beautify:block/blinds/mangrove_blinds_up" - }, - "open=false,facing=east,hidden=false": { - "model": "beautify:block/blinds/mangrove_blinds_up", - "y": 90 - }, - "open=false,facing=south,hidden=false": { - "model": "beautify:block/blinds/mangrove_blinds_up", - "y": 180 - }, - "open=false,facing=west,hidden=false": { - "model": "beautify:block/blinds/mangrove_blinds_up", - "y": 270 - }, - "open=true,facing=north,hidden=false": { - "model": "beautify:block/blinds/mangrove_blinds_down" - }, - "open=true,facing=east,hidden=false": { - "model": "beautify:block/blinds/mangrove_blinds_down", - "y": 90 - }, - "open=true,facing=south,hidden=false": { - "model": "beautify:block/blinds/mangrove_blinds_down", - "y": 180 - }, - "open=true,facing=west,hidden=false": { - "model": "beautify:block/blinds/mangrove_blinds_down", - "y": 270 - }, - "hidden=true":{ - "model": "beautify:block/blinds/none" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/mangrove_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/mangrove_picture_frame.json deleted file mode 100644 index 32a726f9..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/mangrove_picture_frame.json +++ /dev/null @@ -1,199 +0,0 @@ -{ - "variants": { - "frame_motive=0,facing=north": { - "model": "beautify:block/pictureframes/mangrove_sunset_picture_frame" - }, - "frame_motive=0,facing=east": { - "model": "beautify:block/pictureframes/mangrove_sunset_picture_frame", - "y": 90 - }, - "frame_motive=0,facing=south": { - "model": "beautify:block/pictureframes/mangrove_sunset_picture_frame", - "y": 180 - }, - "frame_motive=0,facing=west": { - "model": "beautify:block/pictureframes/mangrove_sunset_picture_frame", - "y": 270 - }, - "frame_motive=1,facing=north": { - "model": "beautify:block/pictureframes/mangrove_flower_picture_frame" - }, - "frame_motive=1,facing=east": { - "model": "beautify:block/pictureframes/mangrove_flower_picture_frame", - "y": 90 - }, - "frame_motive=1,facing=south": { - "model": "beautify:block/pictureframes/mangrove_flower_picture_frame", - "y": 180 - }, - "frame_motive=1,facing=west": { - "model": "beautify:block/pictureframes/mangrove_flower_picture_frame", - "y": 270 - }, - "frame_motive=2,facing=north": { - "model": "beautify:block/pictureframes/mangrove_wasteland_picture_frame" - }, - "frame_motive=2,facing=east": { - "model": "beautify:block/pictureframes/mangrove_wasteland_picture_frame", - "y": 90 - }, - "frame_motive=2,facing=south": { - "model": "beautify:block/pictureframes/mangrove_wasteland_picture_frame", - "y": 180 - }, - "frame_motive=2,facing=west": { - "model": "beautify:block/pictureframes/mangrove_wasteland_picture_frame", - "y": 270 - }, - "frame_motive=3,facing=north": { - "model": "beautify:block/pictureframes/mangrove_plant_picture_frame" - }, - "frame_motive=3,facing=east": { - "model": "beautify:block/pictureframes/mangrove_plant_picture_frame", - "y": 90 - }, - "frame_motive=3,facing=south": { - "model": "beautify:block/pictureframes/mangrove_plant_picture_frame", - "y": 180 - }, - "frame_motive=3,facing=west": { - "model": "beautify:block/pictureframes/mangrove_plant_picture_frame", - "y": 270 - }, - "frame_motive=4,facing=north": { - "model": "beautify:block/pictureframes/mangrove_kebab_picture_frame" - }, - "frame_motive=4,facing=east": { - "model": "beautify:block/pictureframes/mangrove_kebab_picture_frame", - "y": 90 - }, - "frame_motive=4,facing=south": { - "model": "beautify:block/pictureframes/mangrove_kebab_picture_frame", - "y": 180 - }, - "frame_motive=4,facing=west": { - "model": "beautify:block/pictureframes/mangrove_kebab_picture_frame", - "y": 270 - }, - "frame_motive=5,facing=north": { - "model": "beautify:block/pictureframes/mangrove_aztec2_picture_frame" - }, - "frame_motive=5,facing=east": { - "model": "beautify:block/pictureframes/mangrove_aztec2_picture_frame", - "y": 90 - }, - "frame_motive=5,facing=south": { - "model": "beautify:block/pictureframes/mangrove_aztec2_picture_frame", - "y": 180 - }, - "frame_motive=5,facing=west": { - "model": "beautify:block/pictureframes/mangrove_aztec2_picture_frame", - "y": 270 - }, - "frame_motive=6,facing=north": { - "model": "beautify:block/pictureframes/mangrove_aztec_picture_frame" - }, - "frame_motive=6,facing=east": { - "model": "beautify:block/pictureframes/mangrove_aztec_picture_frame", - "y": 90 - }, - "frame_motive=6,facing=south": { - "model": "beautify:block/pictureframes/mangrove_aztec_picture_frame", - "y": 180 - }, - "frame_motive=6,facing=west": { - "model": "beautify:block/pictureframes/mangrove_aztec_picture_frame", - "y": 270 - }, - "frame_motive=7,facing=north": { - "model": "beautify:block/pictureframes/mangrove_alban_picture_frame" - }, - "frame_motive=7,facing=east": { - "model": "beautify:block/pictureframes/mangrove_alban_picture_frame", - "y": 90 - }, - "frame_motive=7,facing=south": { - "model": "beautify:block/pictureframes/mangrove_alban_picture_frame", - "y": 180 - }, - "frame_motive=7,facing=west": { - "model": "beautify:block/pictureframes/mangrove_alban_picture_frame", - "y": 270 - }, - "frame_motive=8,facing=north": { - "model": "beautify:block/pictureframes/mangrove_bomb_picture_frame" - }, - "frame_motive=8,facing=east": { - "model": "beautify:block/pictureframes/mangrove_bomb_picture_frame", - "y": 90 - }, - "frame_motive=8,facing=south": { - "model": "beautify:block/pictureframes/mangrove_bomb_picture_frame", - "y": 180 - }, - "frame_motive=8,facing=west": { - "model": "beautify:block/pictureframes/mangrove_bomb_picture_frame", - "y": 270 - }, - "frame_motive=9,facing=north": { - "model": "beautify:block/pictureframes/mangrove_shroom_picture_frame" - }, - "frame_motive=9,facing=east": { - "model": "beautify:block/pictureframes/mangrove_shroom_picture_frame", - "y": 90 - }, - "frame_motive=9,facing=south": { - "model": "beautify:block/pictureframes/mangrove_shroom_picture_frame", - "y": 180 - }, - "frame_motive=9,facing=west": { - "model": "beautify:block/pictureframes/mangrove_shroom_picture_frame", - "y": 270 - }, - "frame_motive=10,facing=north": { - "model": "beautify:block/pictureframes/mangrove_river_picture_frame" - }, - "frame_motive=10,facing=east": { - "model": "beautify:block/pictureframes/mangrove_river_picture_frame", - "y": 90 - }, - "frame_motive=10,facing=south": { - "model": "beautify:block/pictureframes/mangrove_river_picture_frame", - "y": 180 - }, - "frame_motive=10,facing=west": { - "model": "beautify:block/pictureframes/mangrove_river_picture_frame", - "y": 270 - }, - "frame_motive=11,facing=north": { - "model": "beautify:block/pictureframes/mangrove_beach_picture_frame" - }, - "frame_motive=11,facing=east": { - "model": "beautify:block/pictureframes/mangrove_beach_picture_frame", - "y": 90 - }, - "frame_motive=11,facing=south": { - "model": "beautify:block/pictureframes/mangrove_beach_picture_frame", - "y": 180 - }, - "frame_motive=11,facing=west": { - "model": "beautify:block/pictureframes/mangrove_beach_picture_frame", - "y": 270 - }, - "frame_motive=12,facing=north": { - "model": "beautify:block/pictureframes/mangrove_frog_picture_frame" - }, - "frame_motive=12,facing=east": { - "model": "beautify:block/pictureframes/mangrove_frog_picture_frame", - "y": 90 - }, - "frame_motive=12,facing=south": { - "model": "beautify:block/pictureframes/mangrove_frog_picture_frame", - "y": 180 - }, - "frame_motive=12,facing=west": { - "model": "beautify:block/pictureframes/mangrove_frog_picture_frame", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/mangrove_trellis.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/mangrove_trellis.json deleted file mode 100644 index 0c44dbc5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/mangrove_trellis.json +++ /dev/null @@ -1,247 +0,0 @@ -{ - "variants": { - "ceilling=false,facing=north,flowers=0": { - "model": "beautify:block/trellis/mangrove/closed_trellis", - "y": 270 - }, - "ceilling=false,facing=east,flowers=0": { - "model": "beautify:block/trellis/mangrove/closed_trellis" - }, - "ceilling=false,facing=south,flowers=0": { - "model": "beautify:block/trellis/mangrove/closed_trellis", - "y": 90 - }, - "ceilling=false,facing=west,flowers=0": { - "model": "beautify:block/trellis/mangrove/closed_trellis", - "y": 180 - }, - "ceilling=true,facing=north,flowers=0": { - "model": "beautify:block/trellis/mangrove/open_trellis" - }, - "ceilling=true,facing=east,flowers=0": { - "model": "beautify:block/trellis/mangrove/open_trellis" - }, - "ceilling=true,facing=south,flowers=0": { - "model": "beautify:block/trellis/mangrove/open_trellis" - }, - "ceilling=true,facing=west,flowers=0": { - "model": "beautify:block/trellis/mangrove/open_trellis" - }, - "ceilling=false,facing=north,flowers=1": { - "model": "beautify:block/trellis/mangrove/closed_trellis_rose", - "y": 270 - }, - "ceilling=false,facing=east,flowers=1": { - "model": "beautify:block/trellis/mangrove/closed_trellis_rose" - }, - "ceilling=false,facing=south,flowers=1": { - "model": "beautify:block/trellis/mangrove/closed_trellis_rose", - "y": 90 - }, - "ceilling=false,facing=west,flowers=1": { - "model": "beautify:block/trellis/mangrove/closed_trellis_rose", - "y": 180 - }, - "ceilling=true,facing=north,flowers=1": { - "model": "beautify:block/trellis/mangrove/open_trellis_rose" - }, - "ceilling=true,facing=east,flowers=1": { - "model": "beautify:block/trellis/mangrove/open_trellis_rose" - }, - "ceilling=true,facing=south,flowers=1": { - "model": "beautify:block/trellis/mangrove/open_trellis_rose" - }, - "ceilling=true,facing=west,flowers=1": { - "model": "beautify:block/trellis/mangrove/open_trellis_rose" - }, - "ceilling=false,facing=north,flowers=2": { - "model": "beautify:block/trellis/mangrove/closed_trellis_sunflower", - "y": 270 - }, - "ceilling=false,facing=east,flowers=2": { - "model": "beautify:block/trellis/mangrove/closed_trellis_sunflower" - }, - "ceilling=false,facing=south,flowers=2": { - "model": "beautify:block/trellis/mangrove/closed_trellis_sunflower", - "y": 90 - }, - "ceilling=false,facing=west,flowers=2": { - "model": "beautify:block/trellis/mangrove/closed_trellis_sunflower", - "y": 180 - }, - "ceilling=true,facing=north,flowers=2": { - "model": "beautify:block/trellis/mangrove/open_trellis_sunflower" - }, - "ceilling=true,facing=east,flowers=2": { - "model": "beautify:block/trellis/mangrove/open_trellis_sunflower" - }, - "ceilling=true,facing=south,flowers=2": { - "model": "beautify:block/trellis/mangrove/open_trellis_sunflower" - }, - "ceilling=true,facing=west,flowers=2": { - "model": "beautify:block/trellis/mangrove/open_trellis_sunflower" - }, - "ceilling=false,facing=north,flowers=3": { - "model": "beautify:block/trellis/mangrove/closed_trellis_peony", - "y": 270 - }, - "ceilling=false,facing=east,flowers=3": { - "model": "beautify:block/trellis/mangrove/closed_trellis_peony" - }, - "ceilling=false,facing=south,flowers=3": { - "model": "beautify:block/trellis/mangrove/closed_trellis_peony", - "y": 90 - }, - "ceilling=false,facing=west,flowers=3": { - "model": "beautify:block/trellis/mangrove/closed_trellis_peony", - "y": 180 - }, - "ceilling=true,facing=north,flowers=3": { - "model": "beautify:block/trellis/mangrove/open_trellis_peony" - }, - "ceilling=true,facing=east,flowers=3": { - "model": "beautify:block/trellis/mangrove/open_trellis_peony" - }, - "ceilling=true,facing=south,flowers=3": { - "model": "beautify:block/trellis/mangrove/open_trellis_peony" - }, - "ceilling=true,facing=west,flowers=3": { - "model": "beautify:block/trellis/mangrove/open_trellis_peony" - }, - "ceilling=false,facing=north,flowers=4": { - "model": "beautify:block/trellis/mangrove/closed_trellis_lilac", - "y": 270 - }, - "ceilling=false,facing=east,flowers=4": { - "model": "beautify:block/trellis/mangrove/closed_trellis_lilac" - }, - "ceilling=false,facing=south,flowers=4": { - "model": "beautify:block/trellis/mangrove/closed_trellis_lilac", - "y": 90 - }, - "ceilling=false,facing=west,flowers=4": { - "model": "beautify:block/trellis/mangrove/closed_trellis_lilac", - "y": 180 - }, - "ceilling=true,facing=north,flowers=4": { - "model": "beautify:block/trellis/mangrove/open_trellis_lilac" - }, - "ceilling=true,facing=east,flowers=4": { - "model": "beautify:block/trellis/mangrove/open_trellis_lilac" - }, - "ceilling=true,facing=south,flowers=4": { - "model": "beautify:block/trellis/mangrove/open_trellis_lilac" - }, - "ceilling=true,facing=west,flowers=4": { - "model": "beautify:block/trellis/mangrove/open_trellis_lilac" - }, - "ceilling=false,facing=north,flowers=5": { - "model": "beautify:block/trellis/mangrove/closed_trellis_vine", - "y": 270 - }, - "ceilling=false,facing=east,flowers=5": { - "model": "beautify:block/trellis/mangrove/closed_trellis_vine" - }, - "ceilling=false,facing=south,flowers=5": { - "model": "beautify:block/trellis/mangrove/closed_trellis_vine", - "y": 90 - }, - "ceilling=false,facing=west,flowers=5": { - "model": "beautify:block/trellis/mangrove/closed_trellis_vine", - "y": 180 - }, - "ceilling=true,facing=north,flowers=5": { - "model": "beautify:block/trellis/mangrove/open_trellis_vine" - }, - "ceilling=true,facing=east,flowers=5": { - "model": "beautify:block/trellis/mangrove/open_trellis_vine" - }, - "ceilling=true,facing=south,flowers=5": { - "model": "beautify:block/trellis/mangrove/open_trellis_vine" - }, - "ceilling=true,facing=west,flowers=5": { - "model": "beautify:block/trellis/mangrove/open_trellis_vine" - }, - "ceilling=false,facing=north,flowers=6": { - "model": "beautify:block/trellis/mangrove/closed_trellis_weeping_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=6": { - "model": "beautify:block/trellis/mangrove/closed_trellis_weeping_vines" - }, - "ceilling=false,facing=south,flowers=6": { - "model": "beautify:block/trellis/mangrove/closed_trellis_weeping_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=6": { - "model": "beautify:block/trellis/mangrove/closed_trellis_weeping_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=6": { - "model": "beautify:block/trellis/mangrove/open_trellis_weeping_vines" - }, - "ceilling=true,facing=east,flowers=6": { - "model": "beautify:block/trellis/mangrove/open_trellis_weeping_vines" - }, - "ceilling=true,facing=south,flowers=6": { - "model": "beautify:block/trellis/mangrove/open_trellis_weeping_vines" - }, - "ceilling=true,facing=west,flowers=6": { - "model": "beautify:block/trellis/mangrove/open_trellis_weeping_vines" - }, - "ceilling=false,facing=north,flowers=7": { - "model": "beautify:block/trellis/mangrove/closed_trellis_twisting_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=7": { - "model": "beautify:block/trellis/mangrove/closed_trellis_twisting_vines" - }, - "ceilling=false,facing=south,flowers=7": { - "model": "beautify:block/trellis/mangrove/closed_trellis_twisting_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=7": { - "model": "beautify:block/trellis/mangrove/closed_trellis_twisting_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=7": { - "model": "beautify:block/trellis/mangrove/open_trellis_twisting_vines" - }, - "ceilling=true,facing=east,flowers=7": { - "model": "beautify:block/trellis/mangrove/open_trellis_twisting_vines" - }, - "ceilling=true,facing=south,flowers=7": { - "model": "beautify:block/trellis/mangrove/open_trellis_twisting_vines" - }, - "ceilling=true,facing=west,flowers=7": { - "model": "beautify:block/trellis/mangrove/open_trellis_twisting_vines" - }, - "ceilling=false,facing=north,flowers=8": { - "model": "beautify:block/trellis/mangrove/closed_trellis_lichen", - "y": 270 - }, - "ceilling=false,facing=east,flowers=8": { - "model": "beautify:block/trellis/mangrove/closed_trellis_lichen" - }, - "ceilling=false,facing=south,flowers=8": { - "model": "beautify:block/trellis/mangrove/closed_trellis_lichen", - "y": 90 - }, - "ceilling=false,facing=west,flowers=8": { - "model": "beautify:block/trellis/mangrove/closed_trellis_lichen", - "y": 180 - }, - "ceilling=true,facing=north,flowers=8": { - "model": "beautify:block/trellis/mangrove/open_trellis_lichen" - }, - "ceilling=true,facing=east,flowers=8": { - "model": "beautify:block/trellis/mangrove/open_trellis_lichen" - }, - "ceilling=true,facing=south,flowers=8": { - "model": "beautify:block/trellis/mangrove/open_trellis_lichen" - }, - "ceilling=true,facing=west,flowers=8": { - "model": "beautify:block/trellis/mangrove/open_trellis_lichen" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/oak_blinds.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/oak_blinds.json deleted file mode 100644 index 431a8a37..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/oak_blinds.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "variants": { - "open=false,facing=north,hidden=false": { - "model": "beautify:block/blinds/oak_blinds_up" - }, - "open=false,facing=east,hidden=false": { - "model": "beautify:block/blinds/oak_blinds_up", - "y": 90 - }, - "open=false,facing=south,hidden=false": { - "model": "beautify:block/blinds/oak_blinds_up", - "y": 180 - }, - "open=false,facing=west,hidden=false": { - "model": "beautify:block/blinds/oak_blinds_up", - "y": 270 - }, - "open=true,facing=north,hidden=false": { - "model": "beautify:block/blinds/oak_blinds_down" - }, - "open=true,facing=east,hidden=false": { - "model": "beautify:block/blinds/oak_blinds_down", - "y": 90 - }, - "open=true,facing=south,hidden=false": { - "model": "beautify:block/blinds/oak_blinds_down", - "y": 180 - }, - "open=true,facing=west,hidden=false": { - "model": "beautify:block/blinds/oak_blinds_down", - "y": 270 - }, - "hidden=true":{ - "model": "beautify:block/blinds/none" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/oak_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/oak_picture_frame.json deleted file mode 100644 index ff938738..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/oak_picture_frame.json +++ /dev/null @@ -1,199 +0,0 @@ -{ - "variants": { - "frame_motive=0,facing=north": { - "model": "beautify:block/pictureframes/oak_sunset_picture_frame" - }, - "frame_motive=0,facing=east": { - "model": "beautify:block/pictureframes/oak_sunset_picture_frame", - "y": 90 - }, - "frame_motive=0,facing=south": { - "model": "beautify:block/pictureframes/oak_sunset_picture_frame", - "y": 180 - }, - "frame_motive=0,facing=west": { - "model": "beautify:block/pictureframes/oak_sunset_picture_frame", - "y": 270 - }, - "frame_motive=1,facing=north": { - "model": "beautify:block/pictureframes/oak_flower_picture_frame" - }, - "frame_motive=1,facing=east": { - "model": "beautify:block/pictureframes/oak_flower_picture_frame", - "y": 90 - }, - "frame_motive=1,facing=south": { - "model": "beautify:block/pictureframes/oak_flower_picture_frame", - "y": 180 - }, - "frame_motive=1,facing=west": { - "model": "beautify:block/pictureframes/oak_flower_picture_frame", - "y": 270 - }, - "frame_motive=2,facing=north": { - "model": "beautify:block/pictureframes/oak_wasteland_picture_frame" - }, - "frame_motive=2,facing=east": { - "model": "beautify:block/pictureframes/oak_wasteland_picture_frame", - "y": 90 - }, - "frame_motive=2,facing=south": { - "model": "beautify:block/pictureframes/oak_wasteland_picture_frame", - "y": 180 - }, - "frame_motive=2,facing=west": { - "model": "beautify:block/pictureframes/oak_wasteland_picture_frame", - "y": 270 - }, - "frame_motive=3,facing=north": { - "model": "beautify:block/pictureframes/oak_plant_picture_frame" - }, - "frame_motive=3,facing=east": { - "model": "beautify:block/pictureframes/oak_plant_picture_frame", - "y": 90 - }, - "frame_motive=3,facing=south": { - "model": "beautify:block/pictureframes/oak_plant_picture_frame", - "y": 180 - }, - "frame_motive=3,facing=west": { - "model": "beautify:block/pictureframes/oak_plant_picture_frame", - "y": 270 - }, - "frame_motive=4,facing=north": { - "model": "beautify:block/pictureframes/oak_kebab_picture_frame" - }, - "frame_motive=4,facing=east": { - "model": "beautify:block/pictureframes/oak_kebab_picture_frame", - "y": 90 - }, - "frame_motive=4,facing=south": { - "model": "beautify:block/pictureframes/oak_kebab_picture_frame", - "y": 180 - }, - "frame_motive=4,facing=west": { - "model": "beautify:block/pictureframes/oak_kebab_picture_frame", - "y": 270 - }, - "frame_motive=5,facing=north": { - "model": "beautify:block/pictureframes/oak_aztec2_picture_frame" - }, - "frame_motive=5,facing=east": { - "model": "beautify:block/pictureframes/oak_aztec2_picture_frame", - "y": 90 - }, - "frame_motive=5,facing=south": { - "model": "beautify:block/pictureframes/oak_aztec2_picture_frame", - "y": 180 - }, - "frame_motive=5,facing=west": { - "model": "beautify:block/pictureframes/oak_aztec2_picture_frame", - "y": 270 - }, - "frame_motive=6,facing=north": { - "model": "beautify:block/pictureframes/oak_aztec_picture_frame" - }, - "frame_motive=6,facing=east": { - "model": "beautify:block/pictureframes/oak_aztec_picture_frame", - "y": 90 - }, - "frame_motive=6,facing=south": { - "model": "beautify:block/pictureframes/oak_aztec_picture_frame", - "y": 180 - }, - "frame_motive=6,facing=west": { - "model": "beautify:block/pictureframes/oak_aztec_picture_frame", - "y": 270 - }, - "frame_motive=7,facing=north": { - "model": "beautify:block/pictureframes/oak_alban_picture_frame" - }, - "frame_motive=7,facing=east": { - "model": "beautify:block/pictureframes/oak_alban_picture_frame", - "y": 90 - }, - "frame_motive=7,facing=south": { - "model": "beautify:block/pictureframes/oak_alban_picture_frame", - "y": 180 - }, - "frame_motive=7,facing=west": { - "model": "beautify:block/pictureframes/oak_alban_picture_frame", - "y": 270 - }, - "frame_motive=8,facing=north": { - "model": "beautify:block/pictureframes/oak_bomb_picture_frame" - }, - "frame_motive=8,facing=east": { - "model": "beautify:block/pictureframes/oak_bomb_picture_frame", - "y": 90 - }, - "frame_motive=8,facing=south": { - "model": "beautify:block/pictureframes/oak_bomb_picture_frame", - "y": 180 - }, - "frame_motive=8,facing=west": { - "model": "beautify:block/pictureframes/oak_bomb_picture_frame", - "y": 270 - }, - "frame_motive=9,facing=north": { - "model": "beautify:block/pictureframes/oak_shroom_picture_frame" - }, - "frame_motive=9,facing=east": { - "model": "beautify:block/pictureframes/oak_shroom_picture_frame", - "y": 90 - }, - "frame_motive=9,facing=south": { - "model": "beautify:block/pictureframes/oak_shroom_picture_frame", - "y": 180 - }, - "frame_motive=9,facing=west": { - "model": "beautify:block/pictureframes/oak_shroom_picture_frame", - "y": 270 - }, - "frame_motive=10,facing=north": { - "model": "beautify:block/pictureframes/oak_river_picture_frame" - }, - "frame_motive=10,facing=east": { - "model": "beautify:block/pictureframes/oak_river_picture_frame", - "y": 90 - }, - "frame_motive=10,facing=south": { - "model": "beautify:block/pictureframes/oak_river_picture_frame", - "y": 180 - }, - "frame_motive=10,facing=west": { - "model": "beautify:block/pictureframes/oak_river_picture_frame", - "y": 270 - }, - "frame_motive=11,facing=north": { - "model": "beautify:block/pictureframes/oak_beach_picture_frame" - }, - "frame_motive=11,facing=east": { - "model": "beautify:block/pictureframes/oak_beach_picture_frame", - "y": 90 - }, - "frame_motive=11,facing=south": { - "model": "beautify:block/pictureframes/oak_beach_picture_frame", - "y": 180 - }, - "frame_motive=11,facing=west": { - "model": "beautify:block/pictureframes/oak_beach_picture_frame", - "y": 270 - }, - "frame_motive=12,facing=north": { - "model": "beautify:block/pictureframes/oak_frog_picture_frame" - }, - "frame_motive=12,facing=east": { - "model": "beautify:block/pictureframes/oak_frog_picture_frame", - "y": 90 - }, - "frame_motive=12,facing=south": { - "model": "beautify:block/pictureframes/oak_frog_picture_frame", - "y": 180 - }, - "frame_motive=12,facing=west": { - "model": "beautify:block/pictureframes/oak_frog_picture_frame", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/oak_trellis.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/oak_trellis.json deleted file mode 100644 index f9927da5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/oak_trellis.json +++ /dev/null @@ -1,247 +0,0 @@ -{ - "variants": { - "ceilling=false,facing=north,flowers=0": { - "model": "beautify:block/trellis/oak/closed_trellis", - "y": 270 - }, - "ceilling=false,facing=east,flowers=0": { - "model": "beautify:block/trellis/oak/closed_trellis" - }, - "ceilling=false,facing=south,flowers=0": { - "model": "beautify:block/trellis/oak/closed_trellis", - "y": 90 - }, - "ceilling=false,facing=west,flowers=0": { - "model": "beautify:block/trellis/oak/closed_trellis", - "y": 180 - }, - "ceilling=true,facing=north,flowers=0": { - "model": "beautify:block/trellis/oak/open_trellis" - }, - "ceilling=true,facing=east,flowers=0": { - "model": "beautify:block/trellis/oak/open_trellis" - }, - "ceilling=true,facing=south,flowers=0": { - "model": "beautify:block/trellis/oak/open_trellis" - }, - "ceilling=true,facing=west,flowers=0": { - "model": "beautify:block/trellis/oak/open_trellis" - }, - "ceilling=false,facing=north,flowers=1": { - "model": "beautify:block/trellis/oak/closed_trellis_rose", - "y": 270 - }, - "ceilling=false,facing=east,flowers=1": { - "model": "beautify:block/trellis/oak/closed_trellis_rose" - }, - "ceilling=false,facing=south,flowers=1": { - "model": "beautify:block/trellis/oak/closed_trellis_rose", - "y": 90 - }, - "ceilling=false,facing=west,flowers=1": { - "model": "beautify:block/trellis/oak/closed_trellis_rose", - "y": 180 - }, - "ceilling=true,facing=north,flowers=1": { - "model": "beautify:block/trellis/oak/open_trellis_rose" - }, - "ceilling=true,facing=east,flowers=1": { - "model": "beautify:block/trellis/oak/open_trellis_rose" - }, - "ceilling=true,facing=south,flowers=1": { - "model": "beautify:block/trellis/oak/open_trellis_rose" - }, - "ceilling=true,facing=west,flowers=1": { - "model": "beautify:block/trellis/oak/open_trellis_rose" - }, - "ceilling=false,facing=north,flowers=2": { - "model": "beautify:block/trellis/oak/closed_trellis_sunflower", - "y": 270 - }, - "ceilling=false,facing=east,flowers=2": { - "model": "beautify:block/trellis/oak/closed_trellis_sunflower" - }, - "ceilling=false,facing=south,flowers=2": { - "model": "beautify:block/trellis/oak/closed_trellis_sunflower", - "y": 90 - }, - "ceilling=false,facing=west,flowers=2": { - "model": "beautify:block/trellis/oak/closed_trellis_sunflower", - "y": 180 - }, - "ceilling=true,facing=north,flowers=2": { - "model": "beautify:block/trellis/oak/open_trellis_sunflower" - }, - "ceilling=true,facing=east,flowers=2": { - "model": "beautify:block/trellis/oak/open_trellis_sunflower" - }, - "ceilling=true,facing=south,flowers=2": { - "model": "beautify:block/trellis/oak/open_trellis_sunflower" - }, - "ceilling=true,facing=west,flowers=2": { - "model": "beautify:block/trellis/oak/open_trellis_sunflower" - }, - "ceilling=false,facing=north,flowers=3": { - "model": "beautify:block/trellis/oak/closed_trellis_peony", - "y": 270 - }, - "ceilling=false,facing=east,flowers=3": { - "model": "beautify:block/trellis/oak/closed_trellis_peony" - }, - "ceilling=false,facing=south,flowers=3": { - "model": "beautify:block/trellis/oak/closed_trellis_peony", - "y": 90 - }, - "ceilling=false,facing=west,flowers=3": { - "model": "beautify:block/trellis/oak/closed_trellis_peony", - "y": 180 - }, - "ceilling=true,facing=north,flowers=3": { - "model": "beautify:block/trellis/oak/open_trellis_peony" - }, - "ceilling=true,facing=east,flowers=3": { - "model": "beautify:block/trellis/oak/open_trellis_peony" - }, - "ceilling=true,facing=south,flowers=3": { - "model": "beautify:block/trellis/oak/open_trellis_peony" - }, - "ceilling=true,facing=west,flowers=3": { - "model": "beautify:block/trellis/oak/open_trellis_peony" - }, - "ceilling=false,facing=north,flowers=4": { - "model": "beautify:block/trellis/oak/closed_trellis_lilac", - "y": 270 - }, - "ceilling=false,facing=east,flowers=4": { - "model": "beautify:block/trellis/oak/closed_trellis_lilac" - }, - "ceilling=false,facing=south,flowers=4": { - "model": "beautify:block/trellis/oak/closed_trellis_lilac", - "y": 90 - }, - "ceilling=false,facing=west,flowers=4": { - "model": "beautify:block/trellis/oak/closed_trellis_lilac", - "y": 180 - }, - "ceilling=true,facing=north,flowers=4": { - "model": "beautify:block/trellis/oak/open_trellis_lilac" - }, - "ceilling=true,facing=east,flowers=4": { - "model": "beautify:block/trellis/oak/open_trellis_lilac" - }, - "ceilling=true,facing=south,flowers=4": { - "model": "beautify:block/trellis/oak/open_trellis_lilac" - }, - "ceilling=true,facing=west,flowers=4": { - "model": "beautify:block/trellis/oak/open_trellis_lilac" - }, - "ceilling=false,facing=north,flowers=5": { - "model": "beautify:block/trellis/oak/closed_trellis_vine", - "y": 270 - }, - "ceilling=false,facing=east,flowers=5": { - "model": "beautify:block/trellis/oak/closed_trellis_vine" - }, - "ceilling=false,facing=south,flowers=5": { - "model": "beautify:block/trellis/oak/closed_trellis_vine", - "y": 90 - }, - "ceilling=false,facing=west,flowers=5": { - "model": "beautify:block/trellis/oak/closed_trellis_vine", - "y": 180 - }, - "ceilling=true,facing=north,flowers=5": { - "model": "beautify:block/trellis/oak/open_trellis_vine" - }, - "ceilling=true,facing=east,flowers=5": { - "model": "beautify:block/trellis/oak/open_trellis_vine" - }, - "ceilling=true,facing=south,flowers=5": { - "model": "beautify:block/trellis/oak/open_trellis_vine" - }, - "ceilling=true,facing=west,flowers=5": { - "model": "beautify:block/trellis/oak/open_trellis_vine" - }, - "ceilling=false,facing=north,flowers=6": { - "model": "beautify:block/trellis/oak/closed_trellis_weeping_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=6": { - "model": "beautify:block/trellis/oak/closed_trellis_weeping_vines" - }, - "ceilling=false,facing=south,flowers=6": { - "model": "beautify:block/trellis/oak/closed_trellis_weeping_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=6": { - "model": "beautify:block/trellis/oak/closed_trellis_weeping_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=6": { - "model": "beautify:block/trellis/oak/open_trellis_weeping_vines" - }, - "ceilling=true,facing=east,flowers=6": { - "model": "beautify:block/trellis/oak/open_trellis_weeping_vines" - }, - "ceilling=true,facing=south,flowers=6": { - "model": "beautify:block/trellis/oak/open_trellis_weeping_vines" - }, - "ceilling=true,facing=west,flowers=6": { - "model": "beautify:block/trellis/oak/open_trellis_weeping_vines" - }, - "ceilling=false,facing=north,flowers=7": { - "model": "beautify:block/trellis/oak/closed_trellis_twisting_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=7": { - "model": "beautify:block/trellis/oak/closed_trellis_twisting_vines" - }, - "ceilling=false,facing=south,flowers=7": { - "model": "beautify:block/trellis/oak/closed_trellis_twisting_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=7": { - "model": "beautify:block/trellis/oak/closed_trellis_twisting_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=7": { - "model": "beautify:block/trellis/oak/open_trellis_twisting_vines" - }, - "ceilling=true,facing=east,flowers=7": { - "model": "beautify:block/trellis/oak/open_trellis_twisting_vines" - }, - "ceilling=true,facing=south,flowers=7": { - "model": "beautify:block/trellis/oak/open_trellis_twisting_vines" - }, - "ceilling=true,facing=west,flowers=7": { - "model": "beautify:block/trellis/oak/open_trellis_twisting_vines" - }, - "ceilling=false,facing=north,flowers=8": { - "model": "beautify:block/trellis/oak/closed_trellis_lichen", - "y": 270 - }, - "ceilling=false,facing=east,flowers=8": { - "model": "beautify:block/trellis/oak/closed_trellis_lichen" - }, - "ceilling=false,facing=south,flowers=8": { - "model": "beautify:block/trellis/oak/closed_trellis_lichen", - "y": 90 - }, - "ceilling=false,facing=west,flowers=8": { - "model": "beautify:block/trellis/oak/closed_trellis_lichen", - "y": 180 - }, - "ceilling=true,facing=north,flowers=8": { - "model": "beautify:block/trellis/oak/open_trellis_lichen" - }, - "ceilling=true,facing=east,flowers=8": { - "model": "beautify:block/trellis/oak/open_trellis_lichen" - }, - "ceilling=true,facing=south,flowers=8": { - "model": "beautify:block/trellis/oak/open_trellis_lichen" - }, - "ceilling=true,facing=west,flowers=8": { - "model": "beautify:block/trellis/oak/open_trellis_lichen" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/quartz_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/quartz_picture_frame.json deleted file mode 100644 index bddc90b2..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/quartz_picture_frame.json +++ /dev/null @@ -1,199 +0,0 @@ -{ - "variants": { - "frame_motive=0,facing=north": { - "model": "beautify:block/pictureframes/quartz_sunset_picture_frame" - }, - "frame_motive=0,facing=east": { - "model": "beautify:block/pictureframes/quartz_sunset_picture_frame", - "y": 90 - }, - "frame_motive=0,facing=south": { - "model": "beautify:block/pictureframes/quartz_sunset_picture_frame", - "y": 180 - }, - "frame_motive=0,facing=west": { - "model": "beautify:block/pictureframes/quartz_sunset_picture_frame", - "y": 270 - }, - "frame_motive=1,facing=north": { - "model": "beautify:block/pictureframes/quartz_flower_picture_frame" - }, - "frame_motive=1,facing=east": { - "model": "beautify:block/pictureframes/quartz_flower_picture_frame", - "y": 90 - }, - "frame_motive=1,facing=south": { - "model": "beautify:block/pictureframes/quartz_flower_picture_frame", - "y": 180 - }, - "frame_motive=1,facing=west": { - "model": "beautify:block/pictureframes/quartz_flower_picture_frame", - "y": 270 - }, - "frame_motive=2,facing=north": { - "model": "beautify:block/pictureframes/quartz_wasteland_picture_frame" - }, - "frame_motive=2,facing=east": { - "model": "beautify:block/pictureframes/quartz_wasteland_picture_frame", - "y": 90 - }, - "frame_motive=2,facing=south": { - "model": "beautify:block/pictureframes/quartz_wasteland_picture_frame", - "y": 180 - }, - "frame_motive=2,facing=west": { - "model": "beautify:block/pictureframes/quartz_wasteland_picture_frame", - "y": 270 - }, - "frame_motive=3,facing=north": { - "model": "beautify:block/pictureframes/quartz_plant_picture_frame" - }, - "frame_motive=3,facing=east": { - "model": "beautify:block/pictureframes/quartz_plant_picture_frame", - "y": 90 - }, - "frame_motive=3,facing=south": { - "model": "beautify:block/pictureframes/quartz_plant_picture_frame", - "y": 180 - }, - "frame_motive=3,facing=west": { - "model": "beautify:block/pictureframes/quartz_plant_picture_frame", - "y": 270 - }, - "frame_motive=4,facing=north": { - "model": "beautify:block/pictureframes/quartz_kebab_picture_frame" - }, - "frame_motive=4,facing=east": { - "model": "beautify:block/pictureframes/quartz_kebab_picture_frame", - "y": 90 - }, - "frame_motive=4,facing=south": { - "model": "beautify:block/pictureframes/quartz_kebab_picture_frame", - "y": 180 - }, - "frame_motive=4,facing=west": { - "model": "beautify:block/pictureframes/quartz_kebab_picture_frame", - "y": 270 - }, - "frame_motive=5,facing=north": { - "model": "beautify:block/pictureframes/quartz_aztec2_picture_frame" - }, - "frame_motive=5,facing=east": { - "model": "beautify:block/pictureframes/quartz_aztec2_picture_frame", - "y": 90 - }, - "frame_motive=5,facing=south": { - "model": "beautify:block/pictureframes/quartz_aztec2_picture_frame", - "y": 180 - }, - "frame_motive=5,facing=west": { - "model": "beautify:block/pictureframes/quartz_aztec2_picture_frame", - "y": 270 - }, - "frame_motive=6,facing=north": { - "model": "beautify:block/pictureframes/quartz_aztec_picture_frame" - }, - "frame_motive=6,facing=east": { - "model": "beautify:block/pictureframes/quartz_aztec_picture_frame", - "y": 90 - }, - "frame_motive=6,facing=south": { - "model": "beautify:block/pictureframes/quartz_aztec_picture_frame", - "y": 180 - }, - "frame_motive=6,facing=west": { - "model": "beautify:block/pictureframes/quartz_aztec_picture_frame", - "y": 270 - }, - "frame_motive=7,facing=north": { - "model": "beautify:block/pictureframes/quartz_alban_picture_frame" - }, - "frame_motive=7,facing=east": { - "model": "beautify:block/pictureframes/quartz_alban_picture_frame", - "y": 90 - }, - "frame_motive=7,facing=south": { - "model": "beautify:block/pictureframes/quartz_alban_picture_frame", - "y": 180 - }, - "frame_motive=7,facing=west": { - "model": "beautify:block/pictureframes/quartz_alban_picture_frame", - "y": 270 - }, - "frame_motive=8,facing=north": { - "model": "beautify:block/pictureframes/quartz_bomb_picture_frame" - }, - "frame_motive=8,facing=east": { - "model": "beautify:block/pictureframes/quartz_bomb_picture_frame", - "y": 90 - }, - "frame_motive=8,facing=south": { - "model": "beautify:block/pictureframes/quartz_bomb_picture_frame", - "y": 180 - }, - "frame_motive=8,facing=west": { - "model": "beautify:block/pictureframes/quartz_bomb_picture_frame", - "y": 270 - }, - "frame_motive=9,facing=north": { - "model": "beautify:block/pictureframes/quartz_shroom_picture_frame" - }, - "frame_motive=9,facing=east": { - "model": "beautify:block/pictureframes/quartz_shroom_picture_frame", - "y": 90 - }, - "frame_motive=9,facing=south": { - "model": "beautify:block/pictureframes/quartz_shroom_picture_frame", - "y": 180 - }, - "frame_motive=9,facing=west": { - "model": "beautify:block/pictureframes/quartz_shroom_picture_frame", - "y": 270 - }, - "frame_motive=10,facing=north": { - "model": "beautify:block/pictureframes/quartz_river_picture_frame" - }, - "frame_motive=10,facing=east": { - "model": "beautify:block/pictureframes/quartz_river_picture_frame", - "y": 90 - }, - "frame_motive=10,facing=south": { - "model": "beautify:block/pictureframes/quartz_river_picture_frame", - "y": 180 - }, - "frame_motive=10,facing=west": { - "model": "beautify:block/pictureframes/quartz_river_picture_frame", - "y": 270 - }, - "frame_motive=11,facing=north": { - "model": "beautify:block/pictureframes/quartz_beach_picture_frame" - }, - "frame_motive=11,facing=east": { - "model": "beautify:block/pictureframes/quartz_beach_picture_frame", - "y": 90 - }, - "frame_motive=11,facing=south": { - "model": "beautify:block/pictureframes/quartz_beach_picture_frame", - "y": 180 - }, - "frame_motive=11,facing=west": { - "model": "beautify:block/pictureframes/quartz_beach_picture_frame", - "y": 270 - }, - "frame_motive=12,facing=north": { - "model": "beautify:block/pictureframes/quartz_frog_picture_frame" - }, - "frame_motive=12,facing=east": { - "model": "beautify:block/pictureframes/quartz_frog_picture_frame", - "y": 90 - }, - "frame_motive=12,facing=south": { - "model": "beautify:block/pictureframes/quartz_frog_picture_frame", - "y": 180 - }, - "frame_motive=12,facing=west": { - "model": "beautify:block/pictureframes/quartz_frog_picture_frame", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/rope.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/rope.json deleted file mode 100644 index eb969797..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/rope.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "axis=y": { - "model": "beautify:block/rope" - }, - "axis=x": { - "model": "beautify:block/rope", "x": 90, "y": 90 - }, - "axis=z": { - "model": "beautify:block/rope", "x": 90 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/spruce_blinds.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/spruce_blinds.json deleted file mode 100644 index 3d041142..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/spruce_blinds.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "variants": { - "open=false,facing=north,hidden=false": { - "model": "beautify:block/blinds/spruce_blinds_up" - }, - "open=false,facing=east,hidden=false": { - "model": "beautify:block/blinds/spruce_blinds_up", - "y": 90 - }, - "open=false,facing=south,hidden=false": { - "model": "beautify:block/blinds/spruce_blinds_up", - "y": 180 - }, - "open=false,facing=west,hidden=false": { - "model": "beautify:block/blinds/spruce_blinds_up", - "y": 270 - }, - "open=true,facing=north,hidden=false": { - "model": "beautify:block/blinds/spruce_blinds_down" - }, - "open=true,facing=east,hidden=false": { - "model": "beautify:block/blinds/spruce_blinds_down", - "y": 90 - }, - "open=true,facing=south,hidden=false": { - "model": "beautify:block/blinds/spruce_blinds_down", - "y": 180 - }, - "open=true,facing=west,hidden=false": { - "model": "beautify:block/blinds/spruce_blinds_down", - "y": 270 - }, - "hidden=true":{ - "model": "beautify:block/blinds/none" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/spruce_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/spruce_picture_frame.json deleted file mode 100644 index a27ea370..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/spruce_picture_frame.json +++ /dev/null @@ -1,199 +0,0 @@ -{ - "variants": { - "frame_motive=0,facing=north": { - "model": "beautify:block/pictureframes/spruce_sunset_picture_frame" - }, - "frame_motive=0,facing=east": { - "model": "beautify:block/pictureframes/spruce_sunset_picture_frame", - "y": 90 - }, - "frame_motive=0,facing=south": { - "model": "beautify:block/pictureframes/spruce_sunset_picture_frame", - "y": 180 - }, - "frame_motive=0,facing=west": { - "model": "beautify:block/pictureframes/spruce_sunset_picture_frame", - "y": 270 - }, - "frame_motive=1,facing=north": { - "model": "beautify:block/pictureframes/spruce_flower_picture_frame" - }, - "frame_motive=1,facing=east": { - "model": "beautify:block/pictureframes/spruce_flower_picture_frame", - "y": 90 - }, - "frame_motive=1,facing=south": { - "model": "beautify:block/pictureframes/spruce_flower_picture_frame", - "y": 180 - }, - "frame_motive=1,facing=west": { - "model": "beautify:block/pictureframes/spruce_flower_picture_frame", - "y": 270 - }, - "frame_motive=2,facing=north": { - "model": "beautify:block/pictureframes/spruce_wasteland_picture_frame" - }, - "frame_motive=2,facing=east": { - "model": "beautify:block/pictureframes/spruce_wasteland_picture_frame", - "y": 90 - }, - "frame_motive=2,facing=south": { - "model": "beautify:block/pictureframes/spruce_wasteland_picture_frame", - "y": 180 - }, - "frame_motive=2,facing=west": { - "model": "beautify:block/pictureframes/spruce_wasteland_picture_frame", - "y": 270 - }, - "frame_motive=3,facing=north": { - "model": "beautify:block/pictureframes/spruce_plant_picture_frame" - }, - "frame_motive=3,facing=east": { - "model": "beautify:block/pictureframes/spruce_plant_picture_frame", - "y": 90 - }, - "frame_motive=3,facing=south": { - "model": "beautify:block/pictureframes/spruce_plant_picture_frame", - "y": 180 - }, - "frame_motive=3,facing=west": { - "model": "beautify:block/pictureframes/spruce_plant_picture_frame", - "y": 270 - }, - "frame_motive=4,facing=north": { - "model": "beautify:block/pictureframes/spruce_kebab_picture_frame" - }, - "frame_motive=4,facing=east": { - "model": "beautify:block/pictureframes/spruce_kebab_picture_frame", - "y": 90 - }, - "frame_motive=4,facing=south": { - "model": "beautify:block/pictureframes/spruce_kebab_picture_frame", - "y": 180 - }, - "frame_motive=4,facing=west": { - "model": "beautify:block/pictureframes/spruce_kebab_picture_frame", - "y": 270 - }, - "frame_motive=5,facing=north": { - "model": "beautify:block/pictureframes/spruce_aztec2_picture_frame" - }, - "frame_motive=5,facing=east": { - "model": "beautify:block/pictureframes/spruce_aztec2_picture_frame", - "y": 90 - }, - "frame_motive=5,facing=south": { - "model": "beautify:block/pictureframes/spruce_aztec2_picture_frame", - "y": 180 - }, - "frame_motive=5,facing=west": { - "model": "beautify:block/pictureframes/spruce_aztec2_picture_frame", - "y": 270 - }, - "frame_motive=6,facing=north": { - "model": "beautify:block/pictureframes/spruce_aztec_picture_frame" - }, - "frame_motive=6,facing=east": { - "model": "beautify:block/pictureframes/spruce_aztec_picture_frame", - "y": 90 - }, - "frame_motive=6,facing=south": { - "model": "beautify:block/pictureframes/spruce_aztec_picture_frame", - "y": 180 - }, - "frame_motive=6,facing=west": { - "model": "beautify:block/pictureframes/spruce_aztec_picture_frame", - "y": 270 - }, - "frame_motive=7,facing=north": { - "model": "beautify:block/pictureframes/spruce_alban_picture_frame" - }, - "frame_motive=7,facing=east": { - "model": "beautify:block/pictureframes/spruce_alban_picture_frame", - "y": 90 - }, - "frame_motive=7,facing=south": { - "model": "beautify:block/pictureframes/spruce_alban_picture_frame", - "y": 180 - }, - "frame_motive=7,facing=west": { - "model": "beautify:block/pictureframes/spruce_alban_picture_frame", - "y": 270 - }, - "frame_motive=8,facing=north": { - "model": "beautify:block/pictureframes/spruce_bomb_picture_frame" - }, - "frame_motive=8,facing=east": { - "model": "beautify:block/pictureframes/spruce_bomb_picture_frame", - "y": 90 - }, - "frame_motive=8,facing=south": { - "model": "beautify:block/pictureframes/spruce_bomb_picture_frame", - "y": 180 - }, - "frame_motive=8,facing=west": { - "model": "beautify:block/pictureframes/spruce_bomb_picture_frame", - "y": 270 - }, - "frame_motive=9,facing=north": { - "model": "beautify:block/pictureframes/spruce_shroom_picture_frame" - }, - "frame_motive=9,facing=east": { - "model": "beautify:block/pictureframes/spruce_shroom_picture_frame", - "y": 90 - }, - "frame_motive=9,facing=south": { - "model": "beautify:block/pictureframes/spruce_shroom_picture_frame", - "y": 180 - }, - "frame_motive=9,facing=west": { - "model": "beautify:block/pictureframes/spruce_shroom_picture_frame", - "y": 270 - }, - "frame_motive=10,facing=north": { - "model": "beautify:block/pictureframes/spruce_river_picture_frame" - }, - "frame_motive=10,facing=east": { - "model": "beautify:block/pictureframes/spruce_river_picture_frame", - "y": 90 - }, - "frame_motive=10,facing=south": { - "model": "beautify:block/pictureframes/spruce_river_picture_frame", - "y": 180 - }, - "frame_motive=10,facing=west": { - "model": "beautify:block/pictureframes/spruce_river_picture_frame", - "y": 270 - }, - "frame_motive=11,facing=north": { - "model": "beautify:block/pictureframes/spruce_beach_picture_frame" - }, - "frame_motive=11,facing=east": { - "model": "beautify:block/pictureframes/spruce_beach_picture_frame", - "y": 90 - }, - "frame_motive=11,facing=south": { - "model": "beautify:block/pictureframes/spruce_beach_picture_frame", - "y": 180 - }, - "frame_motive=11,facing=west": { - "model": "beautify:block/pictureframes/spruce_beach_picture_frame", - "y": 270 - }, - "frame_motive=12,facing=north": { - "model": "beautify:block/pictureframes/spruce_frog_picture_frame" - }, - "frame_motive=12,facing=east": { - "model": "beautify:block/pictureframes/spruce_frog_picture_frame", - "y": 90 - }, - "frame_motive=12,facing=south": { - "model": "beautify:block/pictureframes/spruce_frog_picture_frame", - "y": 180 - }, - "frame_motive=12,facing=west": { - "model": "beautify:block/pictureframes/spruce_frog_picture_frame", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/spruce_trellis.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/spruce_trellis.json deleted file mode 100644 index a18dbbaa..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/spruce_trellis.json +++ /dev/null @@ -1,247 +0,0 @@ -{ - "variants": { - "ceilling=false,facing=north,flowers=0": { - "model": "beautify:block/trellis/spruce/closed_trellis", - "y": 270 - }, - "ceilling=false,facing=east,flowers=0": { - "model": "beautify:block/trellis/spruce/closed_trellis" - }, - "ceilling=false,facing=south,flowers=0": { - "model": "beautify:block/trellis/spruce/closed_trellis", - "y": 90 - }, - "ceilling=false,facing=west,flowers=0": { - "model": "beautify:block/trellis/spruce/closed_trellis", - "y": 180 - }, - "ceilling=true,facing=north,flowers=0": { - "model": "beautify:block/trellis/spruce/open_trellis" - }, - "ceilling=true,facing=east,flowers=0": { - "model": "beautify:block/trellis/spruce/open_trellis" - }, - "ceilling=true,facing=south,flowers=0": { - "model": "beautify:block/trellis/spruce/open_trellis" - }, - "ceilling=true,facing=west,flowers=0": { - "model": "beautify:block/trellis/spruce/open_trellis" - }, - "ceilling=false,facing=north,flowers=1": { - "model": "beautify:block/trellis/spruce/closed_trellis_rose", - "y": 270 - }, - "ceilling=false,facing=east,flowers=1": { - "model": "beautify:block/trellis/spruce/closed_trellis_rose" - }, - "ceilling=false,facing=south,flowers=1": { - "model": "beautify:block/trellis/spruce/closed_trellis_rose", - "y": 90 - }, - "ceilling=false,facing=west,flowers=1": { - "model": "beautify:block/trellis/spruce/closed_trellis_rose", - "y": 180 - }, - "ceilling=true,facing=north,flowers=1": { - "model": "beautify:block/trellis/spruce/open_trellis_rose" - }, - "ceilling=true,facing=east,flowers=1": { - "model": "beautify:block/trellis/spruce/open_trellis_rose" - }, - "ceilling=true,facing=south,flowers=1": { - "model": "beautify:block/trellis/spruce/open_trellis_rose" - }, - "ceilling=true,facing=west,flowers=1": { - "model": "beautify:block/trellis/spruce/open_trellis_rose" - }, - "ceilling=false,facing=north,flowers=2": { - "model": "beautify:block/trellis/spruce/closed_trellis_sunflower", - "y": 270 - }, - "ceilling=false,facing=east,flowers=2": { - "model": "beautify:block/trellis/spruce/closed_trellis_sunflower" - }, - "ceilling=false,facing=south,flowers=2": { - "model": "beautify:block/trellis/spruce/closed_trellis_sunflower", - "y": 90 - }, - "ceilling=false,facing=west,flowers=2": { - "model": "beautify:block/trellis/spruce/closed_trellis_sunflower", - "y": 180 - }, - "ceilling=true,facing=north,flowers=2": { - "model": "beautify:block/trellis/spruce/open_trellis_sunflower" - }, - "ceilling=true,facing=east,flowers=2": { - "model": "beautify:block/trellis/spruce/open_trellis_sunflower" - }, - "ceilling=true,facing=south,flowers=2": { - "model": "beautify:block/trellis/spruce/open_trellis_sunflower" - }, - "ceilling=true,facing=west,flowers=2": { - "model": "beautify:block/trellis/spruce/open_trellis_sunflower" - }, - "ceilling=false,facing=north,flowers=3": { - "model": "beautify:block/trellis/spruce/closed_trellis_peony", - "y": 270 - }, - "ceilling=false,facing=east,flowers=3": { - "model": "beautify:block/trellis/spruce/closed_trellis_peony" - }, - "ceilling=false,facing=south,flowers=3": { - "model": "beautify:block/trellis/spruce/closed_trellis_peony", - "y": 90 - }, - "ceilling=false,facing=west,flowers=3": { - "model": "beautify:block/trellis/spruce/closed_trellis_peony", - "y": 180 - }, - "ceilling=true,facing=north,flowers=3": { - "model": "beautify:block/trellis/spruce/open_trellis_peony" - }, - "ceilling=true,facing=east,flowers=3": { - "model": "beautify:block/trellis/spruce/open_trellis_peony" - }, - "ceilling=true,facing=south,flowers=3": { - "model": "beautify:block/trellis/spruce/open_trellis_peony" - }, - "ceilling=true,facing=west,flowers=3": { - "model": "beautify:block/trellis/spruce/open_trellis_peony" - }, - "ceilling=false,facing=north,flowers=4": { - "model": "beautify:block/trellis/spruce/closed_trellis_lilac", - "y": 270 - }, - "ceilling=false,facing=east,flowers=4": { - "model": "beautify:block/trellis/spruce/closed_trellis_lilac" - }, - "ceilling=false,facing=south,flowers=4": { - "model": "beautify:block/trellis/spruce/closed_trellis_lilac", - "y": 90 - }, - "ceilling=false,facing=west,flowers=4": { - "model": "beautify:block/trellis/spruce/closed_trellis_lilac", - "y": 180 - }, - "ceilling=true,facing=north,flowers=4": { - "model": "beautify:block/trellis/spruce/open_trellis_lilac" - }, - "ceilling=true,facing=east,flowers=4": { - "model": "beautify:block/trellis/spruce/open_trellis_lilac" - }, - "ceilling=true,facing=south,flowers=4": { - "model": "beautify:block/trellis/spruce/open_trellis_lilac" - }, - "ceilling=true,facing=west,flowers=4": { - "model": "beautify:block/trellis/spruce/open_trellis_lilac" - }, - "ceilling=false,facing=north,flowers=5": { - "model": "beautify:block/trellis/spruce/closed_trellis_vine", - "y": 270 - }, - "ceilling=false,facing=east,flowers=5": { - "model": "beautify:block/trellis/spruce/closed_trellis_vine" - }, - "ceilling=false,facing=south,flowers=5": { - "model": "beautify:block/trellis/spruce/closed_trellis_vine", - "y": 90 - }, - "ceilling=false,facing=west,flowers=5": { - "model": "beautify:block/trellis/spruce/closed_trellis_vine", - "y": 180 - }, - "ceilling=true,facing=north,flowers=5": { - "model": "beautify:block/trellis/spruce/open_trellis_vine" - }, - "ceilling=true,facing=east,flowers=5": { - "model": "beautify:block/trellis/spruce/open_trellis_vine" - }, - "ceilling=true,facing=south,flowers=5": { - "model": "beautify:block/trellis/spruce/open_trellis_vine" - }, - "ceilling=true,facing=west,flowers=5": { - "model": "beautify:block/trellis/spruce/open_trellis_vine" - }, - "ceilling=false,facing=north,flowers=6": { - "model": "beautify:block/trellis/spruce/closed_trellis_weeping_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=6": { - "model": "beautify:block/trellis/spruce/closed_trellis_weeping_vines" - }, - "ceilling=false,facing=south,flowers=6": { - "model": "beautify:block/trellis/spruce/closed_trellis_weeping_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=6": { - "model": "beautify:block/trellis/spruce/closed_trellis_weeping_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=6": { - "model": "beautify:block/trellis/spruce/open_trellis_weeping_vines" - }, - "ceilling=true,facing=east,flowers=6": { - "model": "beautify:block/trellis/spruce/open_trellis_weeping_vines" - }, - "ceilling=true,facing=south,flowers=6": { - "model": "beautify:block/trellis/spruce/open_trellis_weeping_vines" - }, - "ceilling=true,facing=west,flowers=6": { - "model": "beautify:block/trellis/spruce/open_trellis_weeping_vines" - }, - "ceilling=false,facing=north,flowers=7": { - "model": "beautify:block/trellis/spruce/closed_trellis_twisting_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=7": { - "model": "beautify:block/trellis/spruce/closed_trellis_twisting_vines" - }, - "ceilling=false,facing=south,flowers=7": { - "model": "beautify:block/trellis/spruce/closed_trellis_twisting_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=7": { - "model": "beautify:block/trellis/spruce/closed_trellis_twisting_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=7": { - "model": "beautify:block/trellis/spruce/open_trellis_twisting_vines" - }, - "ceilling=true,facing=east,flowers=7": { - "model": "beautify:block/trellis/spruce/open_trellis_twisting_vines" - }, - "ceilling=true,facing=south,flowers=7": { - "model": "beautify:block/trellis/spruce/open_trellis_twisting_vines" - }, - "ceilling=true,facing=west,flowers=7": { - "model": "beautify:block/trellis/spruce/open_trellis_twisting_vines" - }, - "ceilling=false,facing=north,flowers=8": { - "model": "beautify:block/trellis/spruce/closed_trellis_lichen", - "y": 270 - }, - "ceilling=false,facing=east,flowers=8": { - "model": "beautify:block/trellis/spruce/closed_trellis_lichen" - }, - "ceilling=false,facing=south,flowers=8": { - "model": "beautify:block/trellis/spruce/closed_trellis_lichen", - "y": 90 - }, - "ceilling=false,facing=west,flowers=8": { - "model": "beautify:block/trellis/spruce/closed_trellis_lichen", - "y": 180 - }, - "ceilling=true,facing=north,flowers=8": { - "model": "beautify:block/trellis/spruce/open_trellis_lichen" - }, - "ceilling=true,facing=east,flowers=8": { - "model": "beautify:block/trellis/spruce/open_trellis_lichen" - }, - "ceilling=true,facing=south,flowers=8": { - "model": "beautify:block/trellis/spruce/open_trellis_lichen" - }, - "ceilling=true,facing=west,flowers=8": { - "model": "beautify:block/trellis/spruce/open_trellis_lichen" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/warped_blinds.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/warped_blinds.json deleted file mode 100644 index c1b5416a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/warped_blinds.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "variants": { - "open=false,facing=north,hidden=false": { - "model": "beautify:block/blinds/warped_blinds_up" - }, - "open=false,facing=east,hidden=false": { - "model": "beautify:block/blinds/warped_blinds_up", - "y": 90 - }, - "open=false,facing=south,hidden=false": { - "model": "beautify:block/blinds/warped_blinds_up", - "y": 180 - }, - "open=false,facing=west,hidden=false": { - "model": "beautify:block/blinds/warped_blinds_up", - "y": 270 - }, - "open=true,facing=north,hidden=false": { - "model": "beautify:block/blinds/warped_blinds_down" - }, - "open=true,facing=east,hidden=false": { - "model": "beautify:block/blinds/warped_blinds_down", - "y": 90 - }, - "open=true,facing=south,hidden=false": { - "model": "beautify:block/blinds/warped_blinds_down", - "y": 180 - }, - "open=true,facing=west,hidden=false": { - "model": "beautify:block/blinds/warped_blinds_down", - "y": 270 - }, - "hidden=true":{ - "model": "beautify:block/blinds/none" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/warped_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/warped_picture_frame.json deleted file mode 100644 index 3f9e872e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/warped_picture_frame.json +++ /dev/null @@ -1,199 +0,0 @@ -{ - "variants": { - "frame_motive=0,facing=north": { - "model": "beautify:block/pictureframes/warped_sunset_picture_frame" - }, - "frame_motive=0,facing=east": { - "model": "beautify:block/pictureframes/warped_sunset_picture_frame", - "y": 90 - }, - "frame_motive=0,facing=south": { - "model": "beautify:block/pictureframes/warped_sunset_picture_frame", - "y": 180 - }, - "frame_motive=0,facing=west": { - "model": "beautify:block/pictureframes/warped_sunset_picture_frame", - "y": 270 - }, - "frame_motive=1,facing=north": { - "model": "beautify:block/pictureframes/warped_flower_picture_frame" - }, - "frame_motive=1,facing=east": { - "model": "beautify:block/pictureframes/warped_flower_picture_frame", - "y": 90 - }, - "frame_motive=1,facing=south": { - "model": "beautify:block/pictureframes/warped_flower_picture_frame", - "y": 180 - }, - "frame_motive=1,facing=west": { - "model": "beautify:block/pictureframes/warped_flower_picture_frame", - "y": 270 - }, - "frame_motive=2,facing=north": { - "model": "beautify:block/pictureframes/warped_wasteland_picture_frame" - }, - "frame_motive=2,facing=east": { - "model": "beautify:block/pictureframes/warped_wasteland_picture_frame", - "y": 90 - }, - "frame_motive=2,facing=south": { - "model": "beautify:block/pictureframes/warped_wasteland_picture_frame", - "y": 180 - }, - "frame_motive=2,facing=west": { - "model": "beautify:block/pictureframes/warped_wasteland_picture_frame", - "y": 270 - }, - "frame_motive=3,facing=north": { - "model": "beautify:block/pictureframes/warped_plant_picture_frame" - }, - "frame_motive=3,facing=east": { - "model": "beautify:block/pictureframes/warped_plant_picture_frame", - "y": 90 - }, - "frame_motive=3,facing=south": { - "model": "beautify:block/pictureframes/warped_plant_picture_frame", - "y": 180 - }, - "frame_motive=3,facing=west": { - "model": "beautify:block/pictureframes/warped_plant_picture_frame", - "y": 270 - }, - "frame_motive=4,facing=north": { - "model": "beautify:block/pictureframes/warped_kebab_picture_frame" - }, - "frame_motive=4,facing=east": { - "model": "beautify:block/pictureframes/warped_kebab_picture_frame", - "y": 90 - }, - "frame_motive=4,facing=south": { - "model": "beautify:block/pictureframes/warped_kebab_picture_frame", - "y": 180 - }, - "frame_motive=4,facing=west": { - "model": "beautify:block/pictureframes/warped_kebab_picture_frame", - "y": 270 - }, - "frame_motive=5,facing=north": { - "model": "beautify:block/pictureframes/warped_aztec2_picture_frame" - }, - "frame_motive=5,facing=east": { - "model": "beautify:block/pictureframes/warped_aztec2_picture_frame", - "y": 90 - }, - "frame_motive=5,facing=south": { - "model": "beautify:block/pictureframes/warped_aztec2_picture_frame", - "y": 180 - }, - "frame_motive=5,facing=west": { - "model": "beautify:block/pictureframes/warped_aztec2_picture_frame", - "y": 270 - }, - "frame_motive=6,facing=north": { - "model": "beautify:block/pictureframes/warped_aztec_picture_frame" - }, - "frame_motive=6,facing=east": { - "model": "beautify:block/pictureframes/warped_aztec_picture_frame", - "y": 90 - }, - "frame_motive=6,facing=south": { - "model": "beautify:block/pictureframes/warped_aztec_picture_frame", - "y": 180 - }, - "frame_motive=6,facing=west": { - "model": "beautify:block/pictureframes/warped_aztec_picture_frame", - "y": 270 - }, - "frame_motive=7,facing=north": { - "model": "beautify:block/pictureframes/warped_alban_picture_frame" - }, - "frame_motive=7,facing=east": { - "model": "beautify:block/pictureframes/warped_alban_picture_frame", - "y": 90 - }, - "frame_motive=7,facing=south": { - "model": "beautify:block/pictureframes/warped_alban_picture_frame", - "y": 180 - }, - "frame_motive=7,facing=west": { - "model": "beautify:block/pictureframes/warped_alban_picture_frame", - "y": 270 - }, - "frame_motive=8,facing=north": { - "model": "beautify:block/pictureframes/warped_bomb_picture_frame" - }, - "frame_motive=8,facing=east": { - "model": "beautify:block/pictureframes/warped_bomb_picture_frame", - "y": 90 - }, - "frame_motive=8,facing=south": { - "model": "beautify:block/pictureframes/warped_bomb_picture_frame", - "y": 180 - }, - "frame_motive=8,facing=west": { - "model": "beautify:block/pictureframes/warped_bomb_picture_frame", - "y": 270 - }, - "frame_motive=9,facing=north": { - "model": "beautify:block/pictureframes/warped_shroom_picture_frame" - }, - "frame_motive=9,facing=east": { - "model": "beautify:block/pictureframes/warped_shroom_picture_frame", - "y": 90 - }, - "frame_motive=9,facing=south": { - "model": "beautify:block/pictureframes/warped_shroom_picture_frame", - "y": 180 - }, - "frame_motive=9,facing=west": { - "model": "beautify:block/pictureframes/warped_shroom_picture_frame", - "y": 270 - }, - "frame_motive=10,facing=north": { - "model": "beautify:block/pictureframes/warped_river_picture_frame" - }, - "frame_motive=10,facing=east": { - "model": "beautify:block/pictureframes/warped_river_picture_frame", - "y": 90 - }, - "frame_motive=10,facing=south": { - "model": "beautify:block/pictureframes/warped_river_picture_frame", - "y": 180 - }, - "frame_motive=10,facing=west": { - "model": "beautify:block/pictureframes/warped_river_picture_frame", - "y": 270 - }, - "frame_motive=11,facing=north": { - "model": "beautify:block/pictureframes/warped_beach_picture_frame" - }, - "frame_motive=11,facing=east": { - "model": "beautify:block/pictureframes/warped_beach_picture_frame", - "y": 90 - }, - "frame_motive=11,facing=south": { - "model": "beautify:block/pictureframes/warped_beach_picture_frame", - "y": 180 - }, - "frame_motive=11,facing=west": { - "model": "beautify:block/pictureframes/warped_beach_picture_frame", - "y": 270 - }, - "frame_motive=12,facing=north": { - "model": "beautify:block/pictureframes/warped_frog_picture_frame" - }, - "frame_motive=12,facing=east": { - "model": "beautify:block/pictureframes/warped_frog_picture_frame", - "y": 90 - }, - "frame_motive=12,facing=south": { - "model": "beautify:block/pictureframes/warped_frog_picture_frame", - "y": 180 - }, - "frame_motive=12,facing=west": { - "model": "beautify:block/pictureframes/warped_frog_picture_frame", - "y": 270 - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/blockstates/warped_trellis.json b/mod/beautify/src/main/resources/assets/beautify/blockstates/warped_trellis.json deleted file mode 100644 index acf8d5bb..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/blockstates/warped_trellis.json +++ /dev/null @@ -1,247 +0,0 @@ -{ - "variants": { - "ceilling=false,facing=north,flowers=0": { - "model": "beautify:block/trellis/warped/closed_trellis", - "y": 270 - }, - "ceilling=false,facing=east,flowers=0": { - "model": "beautify:block/trellis/warped/closed_trellis" - }, - "ceilling=false,facing=south,flowers=0": { - "model": "beautify:block/trellis/warped/closed_trellis", - "y": 90 - }, - "ceilling=false,facing=west,flowers=0": { - "model": "beautify:block/trellis/warped/closed_trellis", - "y": 180 - }, - "ceilling=true,facing=north,flowers=0": { - "model": "beautify:block/trellis/warped/open_trellis" - }, - "ceilling=true,facing=east,flowers=0": { - "model": "beautify:block/trellis/warped/open_trellis" - }, - "ceilling=true,facing=south,flowers=0": { - "model": "beautify:block/trellis/warped/open_trellis" - }, - "ceilling=true,facing=west,flowers=0": { - "model": "beautify:block/trellis/warped/open_trellis" - }, - "ceilling=false,facing=north,flowers=1": { - "model": "beautify:block/trellis/warped/closed_trellis_rose", - "y": 270 - }, - "ceilling=false,facing=east,flowers=1": { - "model": "beautify:block/trellis/warped/closed_trellis_rose" - }, - "ceilling=false,facing=south,flowers=1": { - "model": "beautify:block/trellis/warped/closed_trellis_rose", - "y": 90 - }, - "ceilling=false,facing=west,flowers=1": { - "model": "beautify:block/trellis/warped/closed_trellis_rose", - "y": 180 - }, - "ceilling=true,facing=north,flowers=1": { - "model": "beautify:block/trellis/warped/open_trellis_rose" - }, - "ceilling=true,facing=east,flowers=1": { - "model": "beautify:block/trellis/warped/open_trellis_rose" - }, - "ceilling=true,facing=south,flowers=1": { - "model": "beautify:block/trellis/warped/open_trellis_rose" - }, - "ceilling=true,facing=west,flowers=1": { - "model": "beautify:block/trellis/warped/open_trellis_rose" - }, - "ceilling=false,facing=north,flowers=2": { - "model": "beautify:block/trellis/warped/closed_trellis_sunflower", - "y": 270 - }, - "ceilling=false,facing=east,flowers=2": { - "model": "beautify:block/trellis/warped/closed_trellis_sunflower" - }, - "ceilling=false,facing=south,flowers=2": { - "model": "beautify:block/trellis/warped/closed_trellis_sunflower", - "y": 90 - }, - "ceilling=false,facing=west,flowers=2": { - "model": "beautify:block/trellis/warped/closed_trellis_sunflower", - "y": 180 - }, - "ceilling=true,facing=north,flowers=2": { - "model": "beautify:block/trellis/warped/open_trellis_sunflower" - }, - "ceilling=true,facing=east,flowers=2": { - "model": "beautify:block/trellis/warped/open_trellis_sunflower" - }, - "ceilling=true,facing=south,flowers=2": { - "model": "beautify:block/trellis/warped/open_trellis_sunflower" - }, - "ceilling=true,facing=west,flowers=2": { - "model": "beautify:block/trellis/warped/open_trellis_sunflower" - }, - "ceilling=false,facing=north,flowers=3": { - "model": "beautify:block/trellis/warped/closed_trellis_peony", - "y": 270 - }, - "ceilling=false,facing=east,flowers=3": { - "model": "beautify:block/trellis/warped/closed_trellis_peony" - }, - "ceilling=false,facing=south,flowers=3": { - "model": "beautify:block/trellis/warped/closed_trellis_peony", - "y": 90 - }, - "ceilling=false,facing=west,flowers=3": { - "model": "beautify:block/trellis/warped/closed_trellis_peony", - "y": 180 - }, - "ceilling=true,facing=north,flowers=3": { - "model": "beautify:block/trellis/warped/open_trellis_peony" - }, - "ceilling=true,facing=east,flowers=3": { - "model": "beautify:block/trellis/warped/open_trellis_peony" - }, - "ceilling=true,facing=south,flowers=3": { - "model": "beautify:block/trellis/warped/open_trellis_peony" - }, - "ceilling=true,facing=west,flowers=3": { - "model": "beautify:block/trellis/warped/open_trellis_peony" - }, - "ceilling=false,facing=north,flowers=4": { - "model": "beautify:block/trellis/warped/closed_trellis_lilac", - "y": 270 - }, - "ceilling=false,facing=east,flowers=4": { - "model": "beautify:block/trellis/warped/closed_trellis_lilac" - }, - "ceilling=false,facing=south,flowers=4": { - "model": "beautify:block/trellis/warped/closed_trellis_lilac", - "y": 90 - }, - "ceilling=false,facing=west,flowers=4": { - "model": "beautify:block/trellis/warped/closed_trellis_lilac", - "y": 180 - }, - "ceilling=true,facing=north,flowers=4": { - "model": "beautify:block/trellis/warped/open_trellis_lilac" - }, - "ceilling=true,facing=east,flowers=4": { - "model": "beautify:block/trellis/warped/open_trellis_lilac" - }, - "ceilling=true,facing=south,flowers=4": { - "model": "beautify:block/trellis/warped/open_trellis_lilac" - }, - "ceilling=true,facing=west,flowers=4": { - "model": "beautify:block/trellis/warped/open_trellis_lilac" - }, - "ceilling=false,facing=north,flowers=5": { - "model": "beautify:block/trellis/warped/closed_trellis_vine", - "y": 270 - }, - "ceilling=false,facing=east,flowers=5": { - "model": "beautify:block/trellis/warped/closed_trellis_vine" - }, - "ceilling=false,facing=south,flowers=5": { - "model": "beautify:block/trellis/warped/closed_trellis_vine", - "y": 90 - }, - "ceilling=false,facing=west,flowers=5": { - "model": "beautify:block/trellis/warped/closed_trellis_vine", - "y": 180 - }, - "ceilling=true,facing=north,flowers=5": { - "model": "beautify:block/trellis/warped/open_trellis_vine" - }, - "ceilling=true,facing=east,flowers=5": { - "model": "beautify:block/trellis/warped/open_trellis_vine" - }, - "ceilling=true,facing=south,flowers=5": { - "model": "beautify:block/trellis/warped/open_trellis_vine" - }, - "ceilling=true,facing=west,flowers=5": { - "model": "beautify:block/trellis/warped/open_trellis_vine" - }, - "ceilling=false,facing=north,flowers=6": { - "model": "beautify:block/trellis/warped/closed_trellis_weeping_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=6": { - "model": "beautify:block/trellis/warped/closed_trellis_weeping_vines" - }, - "ceilling=false,facing=south,flowers=6": { - "model": "beautify:block/trellis/warped/closed_trellis_weeping_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=6": { - "model": "beautify:block/trellis/warped/closed_trellis_weeping_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=6": { - "model": "beautify:block/trellis/warped/open_trellis_weeping_vines" - }, - "ceilling=true,facing=east,flowers=6": { - "model": "beautify:block/trellis/warped/open_trellis_weeping_vines" - }, - "ceilling=true,facing=south,flowers=6": { - "model": "beautify:block/trellis/warped/open_trellis_weeping_vines" - }, - "ceilling=true,facing=west,flowers=6": { - "model": "beautify:block/trellis/warped/open_trellis_weeping_vines" - }, - "ceilling=false,facing=north,flowers=7": { - "model": "beautify:block/trellis/warped/closed_trellis_twisting_vines", - "y": 270 - }, - "ceilling=false,facing=east,flowers=7": { - "model": "beautify:block/trellis/warped/closed_trellis_twisting_vines" - }, - "ceilling=false,facing=south,flowers=7": { - "model": "beautify:block/trellis/warped/closed_trellis_twisting_vines", - "y": 90 - }, - "ceilling=false,facing=west,flowers=7": { - "model": "beautify:block/trellis/warped/closed_trellis_twisting_vines", - "y": 180 - }, - "ceilling=true,facing=north,flowers=7": { - "model": "beautify:block/trellis/warped/open_trellis_twisting_vines" - }, - "ceilling=true,facing=east,flowers=7": { - "model": "beautify:block/trellis/warped/open_trellis_twisting_vines" - }, - "ceilling=true,facing=south,flowers=7": { - "model": "beautify:block/trellis/warped/open_trellis_twisting_vines" - }, - "ceilling=true,facing=west,flowers=7": { - "model": "beautify:block/trellis/warped/open_trellis_twisting_vines" - }, - "ceilling=false,facing=north,flowers=8": { - "model": "beautify:block/trellis/warped/closed_trellis_lichen", - "y": 270 - }, - "ceilling=false,facing=east,flowers=8": { - "model": "beautify:block/trellis/warped/closed_trellis_lichen" - }, - "ceilling=false,facing=south,flowers=8": { - "model": "beautify:block/trellis/warped/closed_trellis_lichen", - "y": 90 - }, - "ceilling=false,facing=west,flowers=8": { - "model": "beautify:block/trellis/warped/closed_trellis_lichen", - "y": 180 - }, - "ceilling=true,facing=north,flowers=8": { - "model": "beautify:block/trellis/warped/open_trellis_lichen" - }, - "ceilling=true,facing=east,flowers=8": { - "model": "beautify:block/trellis/warped/open_trellis_lichen" - }, - "ceilling=true,facing=south,flowers=8": { - "model": "beautify:block/trellis/warped/open_trellis_lichen" - }, - "ceilling=true,facing=west,flowers=8": { - "model": "beautify:block/trellis/warped/open_trellis_lichen" - } - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/lang/en_us.json b/mod/beautify/src/main/resources/assets/beautify/lang/en_us.json deleted file mode 100644 index 5ece134f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/lang/en_us.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "itemGroup.beautify.group": "Beautify", - "block.beautify.rope": "Rope", - "block.beautify.hanging_pot": "Hanging Pot", - "block.beautify.bookstack": "Bookstack", - "block.beautify.oak_picture_frame": "Oak Picture Frame", - "block.beautify.birch_picture_frame": "Birch Picture Frame", - "block.beautify.spruce_picture_frame": "Spruce Picture Frame", - "block.beautify.dark_oak_picture_frame": "Dark Oak Picture Frame", - "block.beautify.jungle_picture_frame": "Jungle Picture Frame", - "block.beautify.acacia_picture_frame": "Acacia Picture Frame", - "block.beautify.warped_picture_frame": "Warped Picture Frame", - "block.beautify.crimson_picture_frame": "Crimson Picture Frame", - "block.beautify.cherry_picture_frame": "Cherry Picture Frame", - "block.beautify.mangrove_picture_frame": "Mangrove Picture Frame", - "block.beautify.quartz_picture_frame": "Quartz Picture Frame", - "block.beautify.lamp_light_bulb": "Light Bulb", - "block.beautify.lamp_bamboo": "Bamboo Lamp", - "block.beautify.lamp_jar": "Glowstone Essence Lamp", - "block.beautify.lamp_candleabra": "Candelabra", - "block.beautify.lamp_candleabra_light_blue": "Light Blue Candelabra", - "block.beautify.lamp_candleabra_light_gray": "Light Gray Candelabra", - "block.beautify.lamp_candleabra_black": "Black Candelabra", - "block.beautify.lamp_candleabra_blue": "Blue Candelabra", - "block.beautify.lamp_candleabra_brown": "Brown Candelabra", - "block.beautify.lamp_candleabra_cyan": "Cyan Candelabra", - "block.beautify.lamp_candleabra_gray": "Gray Candelabra", - "block.beautify.lamp_candleabra_green": "Green Candelabra", - "block.beautify.lamp_candleabra_lime": "Lime Candelabra", - "block.beautify.lamp_candleabra_magenta": "Magenta Candelabra", - "block.beautify.lamp_candleabra_orange": "Orange Candelabra", - "block.beautify.lamp_candleabra_pink": "Pink Candelabra", - "block.beautify.lamp_candleabra_purple": "Purple Candelabra", - "block.beautify.lamp_candleabra_red": "Red Candelabra", - "block.beautify.lamp_candleabra_white": "White Candelabra", - "block.beautify.lamp_candleabra_yellow": "Yellow Candelabra", - "block.beautify.oak_blinds": "Oak Blinds", - "block.beautify.spruce_blinds": "Spruce Blinds", - "block.beautify.birch_blinds": "Birch Blinds", - "block.beautify.dark_oak_blinds": "Dark Oak Blinds", - "block.beautify.jungle_blinds": "Jungle Blinds", - "block.beautify.crimson_blinds": "Crimson Blinds", - "block.beautify.cherry_blinds": "Cherry Blinds", - "block.beautify.acacia_blinds": "Acacia Blinds", - "block.beautify.warped_blinds": "Warped Blinds", - "block.beautify.mangrove_blinds": "Mangrove Blinds", - "block.beautify.iron_blinds": "Iron Blinds", - "block.beautify.oak_trellis": "Oak Lattice", - "block.beautify.spruce_trellis": "Spruce Lattice", - "block.beautify.birch_trellis": "Birch Lattice", - "block.beautify.jungle_trellis": "Jungle Lattice", - "block.beautify.acacia_trellis": "Acacia Lattice", - "block.beautify.dark_oak_trellis": "Dark Oak Lattice", - "block.beautify.mangrove_trellis": "Mangrove Lattice", - "block.beautify.crimson_trellis": "Crimson Lattice", - "block.beautify.cherry_trellis": "Cherry Lattice", - "block.beautify.warped_trellis": "Warped Lattice", - "block.beautify.botanist_workbench": "Botanist Workbench", - - "entity.minecraft.villager.botanist": "Botanist", - - "sounds.beautify.bookstack_break": "Bookstack broken", - "sounds.beautify.bookstack_step": "Steps on Bookstack", - "sounds.beautify.bookstack_place": "Bookstack placed", - "sounds.beautify.bookstack_hit": "Bookstack hit", - "sounds.beautify.bookstack_fall": "Fallen on Bookstack", - "sounds.beautify.bookstack_next": "Bookstack switched", - "sounds.beautify.blinds_open": "Blinds opened", - "sounds.beautify.blinds_close": "Blinds closed", - - "tooltip.beautify.shift": "Hold SHIFT for more info.", - "tooltip.beautify.plantlist": "Hold CTRL for a list of plants.", - "tooltip.beautify.bookstack.1": "Place a random stack of books, sneaking right-click on the block to change the model.", - "tooltip.beautify.bookstack.2": "Increase the power of the Enchantment Table like bookshelves.", - "tooltip.beautify.botanist_workbench.1": "Workbench for Botanist Villagers, also for decoration.", - "tooltip.beautify.hanging_pot.1": "Can be placed hanging on blocks, Ropes or on ground as usual.", - "tooltip.beautify.hanging_pot.2": "Right click to pot up plants.", - "tooltip.beautify.hanging_pot.3": "Right click with Bone Meal to grow the plant further. Trim with shears to shorten and recieve plant item.", - "tooltip.beautify.hanging_pot.plant_header": "Pottable plants:", - "tooltip.beautify.hanging_pot.plants": "All normal flowers + Rose Bushes, Lilacs, Peonies, Sunflowers, Vines, Weeping Vines, Twisting Vines, Glow Lichen, Glow Berries, Sweet Berries.", - "tooltip.beautify.lamp.1": "Can be placed hanging and standing like Lanterns.", - "tooltip.beautify.lamp.2": "Right click to turn on/off.", - "tooltip.beautify.candelabra.1": "Can be placed hanging and standing like Lanterns.", - "tooltip.beautify.candelabra.2": "Right click with empty hand to extinguish.", - "tooltip.beautify.candelabra.3": "Right click with Flint and Steel to light up.", - "tooltip.beautify.lamp_jar.1": "Can be placed hanging and standing like Lanterns.", - "tooltip.beautify.lamp_jar.2": "Tweaks brightness by filling with Glowstone Dust.", - "tooltip.beautify.lamp_jar.3": "Right click with empty hand to take out the Glowstone Dust.", - "tooltip.beautify.blinds.1": "Right click to open or close all adjacent blinds.", - "tooltip.beautify.blinds.2": "After closing for the first time, the blinds below the uppermost shutter are no longer visible when opened.", - "tooltip.beautify.picture_frame.1": "Random picture when placed.", - "tooltip.beautify.picture_frame.2": "Sneaking right-click on the frame to change the picture inside the frame.", - "tooltip.beautify.rope.1": "Can be placed like chains and climbable.", - "tooltip.beautify.rope.2": "Great with Hanging Pots.", - "tooltip.beautify.trellis.1": "Can be placed on wall or ceiling and can be climbed.", - "tooltip.beautify.trellis.2": "Right click on plants in your hand to place it in.", - "tooltip.beautify.trellis.plant_header": "Pottable plants:", - "tooltip.beautify.trellis.plants": "Rose Bushes, Sunflowers, Peonies, Lilacs, Vines, Weeping Vines, Twisting Vines, Glow Lichen.", - - "advancements.beautify.blinds.title": "Blinded by the lights", - "advancements.beautify.blinds.description": "Craft blinds to filter some light.", - "advancements.beautify.bookstack.title": "No shelf organization", - "advancements.beautify.bookstack.description": "Who needs shelves anyways? Craft a bookstack.", - "advancements.beautify.candelabra.title": "Wicked!", - "advancements.beautify.candelabra.description": "Craft a candelabra.", - "advancements.beautify.hanging_pot.title": "Left hanging", - "advancements.beautify.hanging_pot.description": "Craft a hanging pot.", - "advancements.beautify.light.title": "Lit!", - "advancements.beautify.light.description": "Craft a lightsource from Beautify.", - "advancements.beautify.root.title": "Let's Beautify!", - "advancements.beautify.root.description": "The devil is in the detailing.", - "advancements.beautify.rope.title": "Could you knot?", - "advancements.beautify.rope.description": "Tie String together to receive Rope.", - - "text.autoconfig.beautify.title": "Beautify", - - "text.autoconfig.beautify.option.blinds": "Blinds", - "text.autoconfig.beautify.option.blinds.searchRadius": "Search Radius", - "text.autoconfig.beautify.option.blinds.opensFromRoot": "Opens From Root", - - "text.autoconfig.beautify.option.houses": "Houses", - "text.autoconfig.beautify.option.houses.botanistSpawnWeight": "Botanist Spawn Weight", - - "text.autoconfig.beautify.option.blinds.searchRadius.@Tooltip": "Searches X-Blocks(x = Search Radius) below and X/2 to the sides of the clicked blind for others and opens/closes them too.", - "text.autoconfig.beautify.option.blinds.opensFromRoot.@Tooltip": "Opens blinds from the topmost blind on if true.", - "text.autoconfig.beautify.option.houses.botanistSpawnWeight.@Tooltip": "Defines the chance of a Botanist Villager House inside a village.", - - "category.rei.beautify.pottable": "Pottable" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/lang/it_it.json b/mod/beautify/src/main/resources/assets/beautify/lang/it_it.json deleted file mode 100644 index fc525005..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/lang/it_it.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "itemGroup.beautify.group": "Beautify", - "block.beautify.rope": "Corda", - "block.beautify.hanging_pot": "Vaso pendente", - "block.beautify.bookstack": "Pila di libri", - "block.beautify.oak_picture_frame": "Portafoto di quercia", - "block.beautify.birch_picture_frame": "Portafoto di betulla", - "block.beautify.spruce_picture_frame": "Portafoto di abete", - "block.beautify.dark_oak_picture_frame": "Portafoto di quercia scura", - "block.beautify.jungle_picture_frame": "Portafoto della giungla", - "block.beautify.acacia_picture_frame": "Portafoto di acacia", - "block.beautify.warped_picture_frame": "Portafoto distorta", - "block.beautify.crimson_picture_frame": "Portafoto cremisi", - "block.beautify.cherry_picture_frame": "Portafoto ciliegia", - "block.beautify.mangrove_picture_frame": "Portafoto di mangrovia", - "block.beautify.quartz_picture_frame": "Portafoto di quarzo", - "block.beautify.lamp_light_bulb": "Lampadina", - "block.beautify.lamp_bamboo": "Lampada di bambù", - "block.beautify.lamp_jar": "Lampada di essenza di luminite", - "block.beautify.lamp_candleabra": "Candelabro", - "block.beautify.lamp_candleabra_light_blue": "Candelabro azzurro", - "block.beautify.lamp_candleabra_light_gray": "Candelabro grigio chiaro", - "block.beautify.lamp_candleabra_black": "Candelabro nero", - "block.beautify.lamp_candleabra_blue": "Candelabro blu", - "block.beautify.lamp_candleabra_brown": "Candelabro marrone", - "block.beautify.lamp_candleabra_cyan": "Candelabro ciano", - "block.beautify.lamp_candleabra_gray": "Candelabro grigio", - "block.beautify.lamp_candleabra_green": "Candelabro verde", - "block.beautify.lamp_candleabra_lime": "Candelabro lime", - "block.beautify.lamp_candleabra_magenta": "Candelabro magenta", - "block.beautify.lamp_candleabra_orange": "Candelabro arancione", - "block.beautify.lamp_candleabra_pink": "Candelabro rosa", - "block.beautify.lamp_candleabra_purple": "Candelabro viola", - "block.beautify.lamp_candleabra_red": "Candelabro rosso", - "block.beautify.lamp_candleabra_white": "Candelabro bianco", - "block.beautify.lamp_candleabra_yellow": "Candelabro giallo", - "block.beautify.oak_blinds": "Veneziana di quercia", - "block.beautify.spruce_blinds": "Veneziana di abete", - "block.beautify.birch_blinds": "Veneziana di betulla", - "block.beautify.dark_oak_blinds": "Veneziana di quercia scura", - "block.beautify.jungle_blinds": "Veneziana della giungla", - "block.beautify.crimson_blinds": "Veneziana cremisi", - "block.beautify.cherry_blinds": "Veneziana ciliegia", - "block.beautify.acacia_blinds": "Veneziana di acacia", - "block.beautify.warped_blinds": "Veneziana distorta", - "block.beautify.mangrove_blinds": "Veneziana di mangrovia", - "block.beautify.iron_blinds": "Veneziana di ferro", - "block.beautify.oak_trellis": "Pannello reticolato di quercia", - "block.beautify.spruce_trellis": "Pannello reticolato di abete", - "block.beautify.birch_trellis": "Pannello reticolato di betulla", - "block.beautify.jungle_trellis": "Pannello reticolato della giungla", - "block.beautify.acacia_trellis": "Pannello reticolato di acacia", - "block.beautify.dark_oak_trellis": "Pannello reticolato di quercia scura", - "block.beautify.mangrove_trellis": "Pannello reticolato di mangrovia", - "block.beautify.crimson_trellis": "Pannello reticolato cremisi", - "block.beautify.cherry_trellis": "Pannello reticolato ciliegia", - "block.beautify.warped_trellis": "Pannello reticolato distorto", - "block.beautify.botanist_workbench": "Banco da lavoro del botanico", - - "entity.minecraft.villager.botanist": "Botanico", - - "sounds.beautify.bookstack_break": "Pila di libri rotta", - "sounds.beautify.bookstack_step": "Passi su pila di libri", - "sounds.beautify.bookstack_place": "Pila di libri piazzata", - "sounds.beautify.bookstack_hit": "Pila di libri colpita", - "sounds.beautify.bookstack_fall": "Caduta su pila di libri", - "sounds.beautify.bookstack_next": "Cambio di pila di libri", - "sounds.beautify.blinds_open": "Veneziana aperta", - "sounds.beautify.blinds_close": "Veneziana chiusa", - - "tooltip.beautify.shift": "Tieni premuto SHIFT per maggiori informazioni.", - "tooltip.beautify.plantlist": "Tieni premuto CTRL per una lista di piante.", - "tooltip.beautify.bookstack.1": "Piazza una pila di libri casuale, tasto destro da accovacciati sul blocco cambia il modello.", - "tooltip.beautify.bookstack.2": "Incrementa il potere del banco degli incantesimi come le librerie.", - "tooltip.beautify.botanist_workbench.1": "Banco da lavoro per villici botanici, utile anche come decorazione.", - "tooltip.beautify.hanging_pot.1": "Può essere appeso sotto un blocco, legato a una corda o piazzato a terra.", - "tooltip.beautify.hanging_pot.2": "Tasto destro per mettere una pianta nel vaso.", - "tooltip.beautify.hanging_pot.3": "Tasto destro con della farina d'ossa per far crescere ulteriormente la pianta. Accorciala con delle cesoie e otterrai l'oggetto della pianta.", - "tooltip.beautify.hanging_pot.plant_header": "Piante compatibili:", - "tooltip.beautify.hanging_pot.plants": "Tutti i fiori regolari + rosai, lillà, peonie, girasoli, rampicanti inclusi attorcigliati e piangenti, licheni luminescenti, bacche luminose, bacche dolci.", - "tooltip.beautify.lamp.1": "Può essere appeso o piazzato come le lanterne.", - "tooltip.beautify.lamp.2": "Tasto destro per accendere/spegnere.", - "tooltip.beautify.candelabra.1": "Può essere appeso o piazzato come le lanterne.", - "tooltip.beautify.candelabra.2": "Tasto destro con la mano vuota per spegnere.", - "tooltip.beautify.candelabra.3": "Tasto destro con un acciarino per accendere.", - "tooltip.beautify.lamp_jar.1": "Può essere appeso o piazzato come le lanterne.", - "tooltip.beautify.lamp_jar.2": "Aggiusta la luminosità riempendolo con della luminite.", - "tooltip.beautify.lamp_jar.3": "Tasto destro con una mano vuota per recuperare la polvere di luminite.", - "tooltip.beautify.blinds.1": "Tasto destro per aprire o chiudere tutte le veneziane adiacenti.", - "tooltip.beautify.blinds.2": "Dopo averla chiusa per la prima volta, le veneziane sotto quella più in alto non saranno visibili quando chiuse e funzioneranno come un'unica grande veneziana.", - "tooltip.beautify.picture_frame.1": "Inserisce un'immagine casuale quando piazzata.", - "tooltip.beautify.picture_frame.2": "Tasto destro da accovacciati sul portafoto per cambiare l'immagine all'interno.", - "tooltip.beautify.rope.1": "Può essere piazzata come le catene, e puoi arrampicarti.", - "tooltip.beautify.rope.2": "Un'ottima accoppiata con i vasi pendenti.", - "tooltip.beautify.trellis.1": "Può essere piazzato su un muro o sul soffitto, e puoi arrampicarti.", - "tooltip.beautify.trellis.2": "Tasto destro con una pianta in mano per inserirla.", - "tooltip.beautify.trellis.plant_header": "Piante compatibili:", - "tooltip.beautify.trellis.plants": "Rosai, girasoli, peonie, lillà, rampicanti inclusi attorcigliati e piangenti, licheni luminescenti.", - - "advancements.beautify.blinds.title": "Come a Venezia", - "advancements.beautify.blinds.description": "Crea delle veneziane per filtrare un po' di luce.", - "advancements.beautify.bookstack.title": "Gli scaffali non servono", - "advancements.beautify.bookstack.description": "Basta impilarli, no? Crea una pila di libri.", - "advancements.beautify.candelabra.title": "Cera una volta...", - "advancements.beautify.candelabra.description": "Crea un candelabro.", - "advancements.beautify.hanging_pot.title": "Lasciato in sospeso", - "advancements.beautify.hanging_pot.description": "Crea un vaso pendente.", - "advancements.beautify.light.title": "E luce fu!", - "advancements.beautify.light.description": "Crea una fonte di luce di Beautify.", - "advancements.beautify.root.title": "Decoriamo!", - "advancements.beautify.root.description": "Il diavolo è nei dettagli.", - "advancements.beautify.rope.title": "Tagliamo la corda", - "advancements.beautify.rope.description": "Intreccia delle cordicelle per creare della corda.", - - "text.autoconfig.beautify.title": "Beautify", - - "text.autoconfig.beautify.option.blinds": "Veneziane", - "text.autoconfig.beautify.option.blinds.searchRadius": "Cerca nel raggio", - "text.autoconfig.beautify.option.blinds.opensFromRoot": "Apri dalla base", - - "text.autoconfig.beautify.option.houses": "Case", - "text.autoconfig.beautify.option.houses.botanistSpawnWeight": "Rateo di spawn dei botanici", - - "text.autoconfig.beautify.option.blinds.searchRadius.@Tooltip": "Cerca X blocchi (x = raggio di ricerca) sotto e X/2 ai lati della veneziana con cui si interagisce per trovare e aprire/chiudere anche le veneziane vicine.", - "text.autoconfig.beautify.option.blinds.opensFromRoot.@Tooltip": "Se attivo, apre le veneziane partendo da quella più in alto.", - "text.autoconfig.beautify.option.houses.botanistSpawnWeight.@Tooltip": "Stabilisce le probabilità di spawn della casa del botanico nei villaggi." -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/lang/zh_cn.json b/mod/beautify/src/main/resources/assets/beautify/lang/zh_cn.json deleted file mode 100644 index 205d5270..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/lang/zh_cn.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "itemGroup.beautify.group": "美化!", - "block.beautify.rope": "绳索", - "block.beautify.hanging_pot": "悬挂花盆", - "block.beautify.bookstack": "书堆", - "block.beautify.oak_picture_frame": "橡木画框", - "block.beautify.birch_picture_frame": "白桦木画框", - "block.beautify.spruce_picture_frame": "云杉木画框", - "block.beautify.dark_oak_picture_frame": "深色橡木画框", - "block.beautify.jungle_picture_frame": "丛林木画框", - "block.beautify.acacia_picture_frame": "金合欢木画框", - "block.beautify.warped_picture_frame": "诡异木画框", - "block.beautify.crimson_picture_frame": "绯红木画框", - "block.beautify.cherry_picture_frame": "樱花木画框", - "block.beautify.mangrove_picture_frame": "红树木画框", - "block.beautify.quartz_picture_frame": "石英画框", - "block.beautify.lamp_light_bulb": "灯泡", - "block.beautify.lamp_bamboo": "竹灯", - "block.beautify.lamp_jar": "荧石灯", - "block.beautify.lamp_candleabra": "烛台", - "block.beautify.lamp_candleabra_light_blue": "淡蓝色蜡烛烛台", - "block.beautify.lamp_candleabra_light_gray": "淡灰色蜡烛烛台", - "block.beautify.lamp_candleabra_black": "黑色蜡烛烛台", - "block.beautify.lamp_candleabra_blue": "蓝色蜡烛烛台", - "block.beautify.lamp_candleabra_brown": "棕色蜡烛烛台", - "block.beautify.lamp_candleabra_cyan": "青色蜡烛烛台", - "block.beautify.lamp_candleabra_gray": "灰色蜡烛烛台", - "block.beautify.lamp_candleabra_green": "绿色蜡烛烛台", - "block.beautify.lamp_candleabra_lime": "黄绿色蜡烛烛台", - "block.beautify.lamp_candleabra_magenta": "品红色蜡烛烛台", - "block.beautify.lamp_candleabra_orange": "橙色蜡烛烛台", - "block.beautify.lamp_candleabra_pink": "粉红色蜡烛烛台", - "block.beautify.lamp_candleabra_purple": "紫色蜡烛烛台", - "block.beautify.lamp_candleabra_red": "红色蜡烛烛台", - "block.beautify.lamp_candleabra_white": "白色蜡烛烛台", - "block.beautify.lamp_candleabra_yellow": "黄色蜡烛烛台", - "block.beautify.oak_blinds": "橡木百叶窗", - "block.beautify.spruce_blinds": "云杉木百叶窗", - "block.beautify.birch_blinds": "白桦木百叶窗", - "block.beautify.dark_oak_blinds": "深色橡木百叶窗", - "block.beautify.jungle_blinds": "丛林木百叶窗", - "block.beautify.crimson_blinds": "绯红木百叶窗", - "block.beautify.cherry_blinds": "樱花木百叶窗", - "block.beautify.acacia_blinds": "金合欢木百叶窗", - "block.beautify.warped_blinds": "诡异木百叶窗", - "block.beautify.mangrove_blinds": "红树木百叶窗", - "block.beautify.iron_blinds": "铁百叶窗", - "block.beautify.oak_trellis": "橡木花爬架", - "block.beautify.spruce_trellis": "云杉木花爬架", - "block.beautify.birch_trellis": "白桦木花爬架", - "block.beautify.jungle_trellis": "丛林木花爬架", - "block.beautify.acacia_trellis": "金合欢木花爬架", - "block.beautify.dark_oak_trellis": "深色橡木花爬架", - "block.beautify.mangrove_trellis": "红树木花爬架", - "block.beautify.crimson_trellis": "绯红木花爬架", - "block.beautify.cherry_trellis": "樱花木花爬架", - "block.beautify.warped_trellis": "诡异木花爬架", - "block.beautify.botanist_workbench": "植物学家工作台", - - "entity.minecraft.villager.botanist": "植物学家", - - "sounds.beautify.bookstack_break": "书堆:被破坏", - "sounds.beautify.bookstack_step": "书堆:脚步声", - "sounds.beautify.bookstack_place": "书堆:被放置", - "sounds.beautify.bookstack_hit": "书堆:击打", - "sounds.beautify.bookstack_fall": "玩家:落在书堆上", - "sounds.beautify.bookstack_next": "书堆:改变", - "sounds.beautify.blinds_open": "百叶窗:打开", - "sounds.beautify.blinds_close": "百叶窗:关闭", - - "tooltip.beautify.shift": "按住SHIFT键获取更多信息。", - "tooltip.beautify.plantlist": "按住CTRL键查看植物列表。", - "tooltip.beautify.bookstack.1": "放置时随机书堆,潜行右击书堆以更改模型。", - "tooltip.beautify.bookstack.2": "可以像书架一样为附魔台提升附魔等级。", - "tooltip.beautify.botanist_workbench.1": "植物学家村民的工作台,也可用于装饰。", - "tooltip.beautify.hanging_pot.1": "可悬挂在方块上或者放在地面上。", - "tooltip.beautify.hanging_pot.2": "右击可将植物种上悬挂花盆。", - "tooltip.beautify.hanging_pot.3": "对植物手持骨粉右击,可使植物进一步生长,用剪刀修剪以缩短和收获植物。", - "tooltip.beautify.hanging_pot.plant_header": "可盆栽植物:", - "tooltip.beautify.hanging_pot.plants": "对所有小型花,玫瑰丛,丁香,牡丹,向日葵,藤蔓,垂泪藤,缠怨藤,发光地衣,发光浆果,甜浆果有效。", - "tooltip.beautify.lamp.1": "可以像灯笼一样悬挂和放置。", - "tooltip.beautify.lamp.2": "空手右击以开关。", - "tooltip.beautify.candelabra.1": "可以像灯笼一样悬挂和放置。", - "tooltip.beautify.candelabra.2": "空手右击以熄灭烛台。", - "tooltip.beautify.candelabra.3": "可用打火石来点亮。", - "tooltip.beautify.lamp_jar.1": "可以像灯笼一样悬挂和放置。", - "tooltip.beautify.lamp_jar.2": "可通过填充荧石来调整亮度。", - "tooltip.beautify.lamp_jar.3": "空手右击以取出荧石粉。", - "tooltip.beautify.blinds.1": "右击以打开或关闭所有相邻的百叶窗。", - "tooltip.beautify.blinds.2": "第一次关闭后,最上面的百叶窗下面的百叶窗在打开时将不再可见。", - "tooltip.beautify.picture_frame.1": "放置时将随机图片。", - "tooltip.beautify.picture_frame.2": "潜行右击以改变画框内的画。", - "tooltip.beautify.rope.1": "可以像锁链一样放置并且可以攀爬。", - "tooltip.beautify.rope.2": "和悬挂花盆很搭。", - "tooltip.beautify.trellis.1": "可以放置在墙上或天花板上,可攀爬。", - "tooltip.beautify.trellis.2": "手持植物右击可将其放入其中", - "tooltip.beautify.trellis.plant_header": "可放置植物:", - "tooltip.beautify.trellis.plants": "玫瑰丛,向日葵,牡丹,丁香,藤蔓,垂泪藤,缠怨藤,发光地衣。", - - "advancements.beautify.blinds.title": "被灯光蒙蔽了双眼", - "advancements.beautify.blinds.description": "制作百叶窗来过滤一些光线。", - "advancements.beautify.bookstack.title": "不在书架上的书", - "advancements.beautify.bookstack.description": "谁需要书架呢?制作一个书架。", - "advancements.beautify.candelabra.title": "烛芯!", - "advancements.beautify.candelabra.description": "制作一个烛台。", - "advancements.beautify.hanging_pot.title": "挂起来", - "advancements.beautify.hanging_pot.description": "制作一个悬挂花盆。", - "advancements.beautify.light.title": "点亮!", - "advancements.beautify.light.description": "在美化中制作一个灯源。", - "advancements.beautify.root.title": "让我们来美化!", - "advancements.beautify.root.description": "恶魔就在细节之中。", - "advancements.beautify.rope.title": "你能打结吗?", - "advancements.beautify.rope.description": "把绳子系在一起来接收绳子。", - - "text.autoconfig.beautify.title": "美化", - - "text.autoconfig.beautify.option.blinds": "百叶窗", - "text.autoconfig.beautify.option.blinds.searchRadius": "搜索半径", - "text.autoconfig.beautify.option.blinds.opensFromRoot": "顶部打开", - - "text.autoconfig.beautify.option.houses": "小屋", - "text.autoconfig.beautify.option.houses.botanistSpawnWeight": "植物学家村民生成权重", - - "text.autoconfig.beautify.option.blinds.searchRadius.@Tooltip": "搜索半径会确定打开或关闭距离被点击的百叶窗的块数(例如,搜索半径为 6 时,将搜索被点击的百叶窗左右 3 个方块和向下 6 个方块)。", - "text.autoconfig.beautify.option.blinds.opensFromRoot.@Tooltip": "是否从顶部打开百叶窗。", - "text.autoconfig.beautify.option.houses.botanistSpawnWeight.@Tooltip": "植物学家村民小屋在村庄中的生成几率。" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/acacia_blinds_down.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/acacia_blinds_down.json deleted file mode 100644 index 9a859800..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/acacia_blinds_down.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_down", - "textures": { - "0": "minecraft:block/acacia_planks", - "particle": "minecraft:block/acacia_planks" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/acacia_blinds_up.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/acacia_blinds_up.json deleted file mode 100644 index cf632d18..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/acacia_blinds_up.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_up", - "textures": { - "0": "minecraft:block/acacia_planks", - "particle": "minecraft:block/acacia_planks" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/birch_blinds_down.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/birch_blinds_down.json deleted file mode 100644 index 917aeb51..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/birch_blinds_down.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_down", - "textures": { - "0": "minecraft:block/birch_planks", - "particle": "minecraft:block/birch_planks" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/birch_blinds_up.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/birch_blinds_up.json deleted file mode 100644 index 75d8aa32..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/birch_blinds_up.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_up", - "textures": { - "0": "minecraft:block/birch_planks", - "particle": "minecraft:block/birch_planks" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/cherry_blinds_down.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/cherry_blinds_down.json deleted file mode 100644 index ba8f6ae5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/cherry_blinds_down.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_down", - "textures": { - "0": "minecraft:block/cherry_planks", - "particle": "minecraft:block/cherry_planks" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/cherry_blinds_up.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/cherry_blinds_up.json deleted file mode 100644 index 49e4331e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/cherry_blinds_up.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_up", - "textures": { - "0": "minecraft:block/cherry_planks", - "particle": "minecraft:block/cherry_planks" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/crimson_blinds_down.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/crimson_blinds_down.json deleted file mode 100644 index 5538c6fa..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/crimson_blinds_down.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_down", - "textures": { - "0": "minecraft:block/crimson_planks", - "particle": "minecraft:block/crimson_planks" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/crimson_blinds_up.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/crimson_blinds_up.json deleted file mode 100644 index fab1763a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/crimson_blinds_up.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_up", - "textures": { - "0": "minecraft:block/crimson_planks", - "particle": "minecraft:block/crimson_planks" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/dark_oak_blinds_down.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/dark_oak_blinds_down.json deleted file mode 100644 index d96650b7..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/dark_oak_blinds_down.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_down", - "textures": { - "0": "minecraft:block/dark_oak_planks", - "particle": "minecraft:block/dark_oak_planks" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/dark_oak_blinds_up.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/dark_oak_blinds_up.json deleted file mode 100644 index 3bb69f4e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/dark_oak_blinds_up.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_up", - "textures": { - "0": "minecraft:block/dark_oak_planks", - "particle": "minecraft:block/dark_oak_planks" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/iron_blinds_down.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/iron_blinds_down.json deleted file mode 100644 index f0ef9bbc..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/iron_blinds_down.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_down", - "textures": { - "0": "minecraft:block/iron_block", - "particle": "minecraft:block/iron_block" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/iron_blinds_up.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/iron_blinds_up.json deleted file mode 100644 index e4adeb85..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/iron_blinds_up.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_up", - "textures": { - "0": "minecraft:block/iron_block", - "particle": "minecraft:block/iron_block" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/jungle_blinds_down.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/jungle_blinds_down.json deleted file mode 100644 index 09bfaa83..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/jungle_blinds_down.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_down", - "textures": { - "0": "minecraft:block/jungle_planks", - "particle": "minecraft:block/jungle_planks" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/jungle_blinds_up.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/jungle_blinds_up.json deleted file mode 100644 index 7864240a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/jungle_blinds_up.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_up", - "textures": { - "0": "minecraft:block/jungle_planks", - "particle": "minecraft:block/jungle_planks" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/mangrove_blinds_down.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/mangrove_blinds_down.json deleted file mode 100644 index f9e34633..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/mangrove_blinds_down.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_down", - "textures": { - "0": "minecraft:block/mangrove_planks", - "particle": "minecraft:block/mangrove_planks" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/mangrove_blinds_up.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/mangrove_blinds_up.json deleted file mode 100644 index e8c29a65..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/mangrove_blinds_up.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_up", - "textures": { - "0": "minecraft:block/mangrove_planks", - "particle": "minecraft:block/mangrove_planks" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/none.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/none.json deleted file mode 100644 index 2a8865b4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/none.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "beautify:block/empty", - "particle": "beautify:block/empty" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 0, 0], - "to": [0, 0, 0], - "faces": { - "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, - "east": {"uv": [0, 1, 1, 2], "texture": "#0"}, - "south": {"uv": [1, 0, 2, 1], "texture": "#0"}, - "west": {"uv": [1, 1, 2, 2], "texture": "#0"}, - "up": {"uv": [1, 3, 0, 2], "texture": "#0"}, - "down": {"uv": [3, 0, 2, 1], "texture": "#0"} - } - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/oak_blinds_down.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/oak_blinds_down.json deleted file mode 100644 index f5047ffb..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/oak_blinds_down.json +++ /dev/null @@ -1,148 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_planks", - "particle": "block/oak_planks" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 14.75], - "to": [16, 15.75, 16.75], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 12.5, 16]}, - "faces": { - "north": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#0"} - } - }, - { - "from": [0, 11.75, 13.5], - "to": [16, 12.75, 15.5], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 12.5, 16]}, - "faces": { - "north": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#0"} - } - }, - { - "from": [0, 8.75, 12.25], - "to": [16, 9.75, 14.25], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 12.5, 16]}, - "faces": { - "north": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#0"} - } - }, - { - "from": [0, 5.75, 11], - "to": [16, 6.75, 13], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 12.5, 16]}, - "faces": { - "north": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#0"} - } - }, - { - "from": [0, 2.75, 9.75], - "to": [16, 3.75, 11.75], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 12.5, 16]}, - "faces": { - "north": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#0"} - } - }, - { - "from": [14, 0, 15], - "to": [15, 16, 15], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 0, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 0, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 0], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 0], "texture": "#0"} - } - }, - { - "from": [1, 0, 15], - "to": [2, 16, 15], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 0, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 0, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 0], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 0], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 3.5, -2.75], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "translation": [0, 3.5, -2.75], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "rotation": [172.48, -4.07, 179.68], - "translation": [1.25, 1.5, 4.5], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [172.48, -4.07, 179.68], - "translation": [1.25, 1.5, 4.5], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, -4.75], - "scale": [0.65, 0.65, 0.65] - }, - "gui": { - "rotation": [176.13, 18.08, -174.53], - "translation": [-2, 0.25, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "translation": [0, -0.25, -13.75] - }, - "fixed": { - "translation": [0, 0, -7.5] - } - }, - "groups": [ - { - "name": "blinds", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - }, - { - "name": "string", - "origin": [8, 8, 8], - "color": 0, - "children": [5, 6] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/oak_blinds_up.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/oak_blinds_up.json deleted file mode 100644 index 0245bd4a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/oak_blinds_up.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "minecraft:block/oak_planks", - "particle": "minecraft:block/oak_planks" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14, 14], - "to": [16, 16, 16], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 12.5, 16]}, - "faces": { - "north": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 16, 2], "texture": "#0"} - } - } - ], - "groups": [ - { - "name": "blinds", - "origin": [8, 8, 8], - "color": 0, - "children": [0] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/spruce_blinds_down.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/spruce_blinds_down.json deleted file mode 100644 index 5a5dff82..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/spruce_blinds_down.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_down", - "textures": { - "0": "minecraft:block/spruce_planks", - "particle": "minecraft:block/spruce_planks" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/spruce_blinds_up.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/spruce_blinds_up.json deleted file mode 100644 index 48c5b38b..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/spruce_blinds_up.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_up", - "textures": { - "0": "minecraft:block/spruce_planks", - "particle": "minecraft:block/spruce_planks" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/warped_blinds_down.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/warped_blinds_down.json deleted file mode 100644 index 1afab849..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/warped_blinds_down.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_down", - "textures": { - "0": "minecraft:block/warped_planks", - "particle": "minecraft:block/warped_planks" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/warped_blinds_up.json b/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/warped_blinds_up.json deleted file mode 100644 index 890ca099..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/blinds/warped_blinds_up.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_up", - "textures": { - "0": "minecraft:block/warped_planks", - "particle": "minecraft:block/warped_planks" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_0.json b/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_0.json deleted file mode 100644 index 78d1e3c9..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_0.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "0": "beautify:block/bookstack_0", - "particle": "beautify:block/bookstack_0" - }, - "render_type": "cutout", - "elements": [ - { - "from": [6.25, 0, 2], - "to": [14.25, 2, 11], - "rotation": {"angle": -22.5, "axis": "y", "origin": [6.25, 0, 7]}, - "faces": { - "north": {"uv": [0.5, 13, 8, 15], "texture": "#0"}, - "east": {"uv": [0.5, 13, 5, 15], "texture": "#0"}, - "south": {"uv": [0, 13, 7.5, 15], "texture": "#0"}, - "west": {"uv": [4.5, 7.5, 9, 8.5], "texture": "#0"}, - "up": {"uv": [4, 13, 0, 8.5], "texture": "#0"}, - "down": {"uv": [8, 8.5, 4, 13], "texture": "#0"} - } - }, - { - "from": [7.78284, 2, 4.32122], - "to": [12.78284, 4, 11.32122], - "rotation": {"angle": 45, "axis": "y", "origin": [10.25, 3, 7]}, - "faces": { - "north": {"uv": [6, 4.5, 10.5, 6.5], "texture": "#0"}, - "east": {"uv": [6, 3.5, 9.5, 4.5], "texture": "#0"}, - "south": {"uv": [6.5, 4.5, 11, 6.5], "texture": "#0"}, - "west": {"uv": [6.5, 4.5, 10, 6.5], "texture": "#0"}, - "up": {"uv": [8.5, 3.5, 6, 0], "texture": "#0"}, - "down": {"uv": [11, 0, 8.5, 3.5], "texture": "#0"} - } - }, - { - "from": [1.25, 1, 3], - "to": [7.25, 3, 12], - "rotation": {"angle": 22.5, "axis": "z", "origin": [3.25, 0, 7]}, - "faces": { - "north": {"uv": [0.5, 4.5, 6, 6.5], "texture": "#0"}, - "east": {"uv": [1, 4.5, 5.5, 6.5], "texture": "#0"}, - "south": {"uv": [0, 4.5, 5.5, 6.5], "texture": "#0"}, - "west": {"uv": [0, 7.5, 4.5, 8.5], "texture": "#0"}, - "up": {"uv": [3, 4.5, 0, 0], "texture": "#0"}, - "down": {"uv": [6, 0, 3, 4.5], "texture": "#0"} - } - } - ], - "groups": [ - { - "name": "stack", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_1.json b/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_1.json deleted file mode 100644 index 4fbdb285..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_1.json +++ /dev/null @@ -1,105 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "0": "beautify:block/bookstack_1", - "particle": "beautify:block/bookstack_1" - }, - "render_type": "cutout", - "elements": [ - { - "from": [3.75, 0.5, 5], - "to": [9, 1.5, 15], - "rotation": {"angle": 22.5, "axis": "y", "origin": [9, 0, 9]}, - "faces": { - "north": {"uv": [7, 12, 10, 13], "texture": "#0"}, - "east": {"uv": [5, 12, 10, 12.5], "texture": "#0"}, - "south": {"uv": [7, 13, 10, 14], "texture": "#0"}, - "west": {"uv": [5, 13, 10, 14], "texture": "#0"}, - "up": {"uv": [6, 7, 9, 12], "texture": "#0"}, - "down": {"uv": [9, 7, 12, 12], "texture": "#0"} - } - }, - { - "from": [9, 0.5, 5], - "to": [9.75, 1, 15], - "rotation": {"angle": 22.5, "axis": "y", "origin": [9, 0, 9]}, - "faces": { - "north": {"uv": [7, 12, 7.375, 12.5], "texture": "#0"}, - "east": {"uv": [5, 12, 10, 12.5], "texture": "#0"}, - "south": {"uv": [7, 13, 7.375, 13.25], "texture": "#0"}, - "west": {"uv": [5, 13, 10, 13.5], "texture": "#0"}, - "up": {"uv": [6, 7, 6.375, 12], "texture": "#0"}, - "down": {"uv": [9, 7, 12, 12], "texture": "#0"} - } - }, - { - "from": [10.25, 0.5, 5], - "to": [11, 1, 15], - "rotation": {"angle": 22.5, "axis": "y", "origin": [9, 0, 9]}, - "faces": { - "north": {"uv": [7, 13, 7.375, 13.25], "texture": "#0"}, - "east": {"uv": [5, 13, 10, 13.5], "texture": "#0"}, - "south": {"uv": [7, 12, 7.375, 12.5], "texture": "#0"}, - "west": {"uv": [5, 12, 10, 12.5], "texture": "#0"}, - "up": {"uv": [6, 7, 6.375, 12], "rotation": 180, "texture": "#0"}, - "down": {"uv": [9, 7, 12, 12], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [11, 0.5, 5], - "to": [16.25, 1.5, 15], - "rotation": {"angle": 22.5, "axis": "y", "origin": [9, 0, 9]}, - "faces": { - "north": {"uv": [0, 12, 3, 13], "texture": "#0"}, - "east": {"uv": [0, 13, 5, 14], "texture": "#0"}, - "south": {"uv": [0, 13, 3, 14], "texture": "#0"}, - "west": {"uv": [0, 12, 5, 12.5], "texture": "#0"}, - "up": {"uv": [0, 7, 3, 12], "texture": "#0"}, - "down": {"uv": [3, 7, 6, 12], "texture": "#0"} - } - }, - { - "from": [9, 0, 5], - "to": [11, 0.5, 15], - "rotation": {"angle": 22.5, "axis": "y", "origin": [9, 0, 9]}, - "faces": { - "north": {"uv": [10, 12.5, 11, 12.75], "texture": "#0"}, - "east": {"uv": [10, 12.5, 15, 12.75], "texture": "#0"}, - "south": {"uv": [10, 12, 11, 12.25], "texture": "#0"}, - "west": {"uv": [10, 12, 15, 12.25], "texture": "#0"}, - "up": {"uv": [13, 7, 14, 12], "texture": "#0"}, - "down": {"uv": [12, 7, 13, 12], "texture": "#0"} - } - }, - { - "from": [0.5, 1.25, 4], - "to": [7.5, 3.25, 12], - "rotation": {"angle": 22.5, "axis": "z", "origin": [3.5, 0, 0]}, - "faces": { - "north": {"uv": [0.5, 4, 6, 6], "texture": "#0"}, - "east": {"uv": [0.5, 4, 4.5, 6], "texture": "#0"}, - "south": {"uv": [0, 4, 5.5, 6], "texture": "#0"}, - "west": {"uv": [0, 6, 4, 7], "texture": "#0"}, - "up": {"uv": [0, 0, 3.5, 4], "texture": "#0"}, - "down": {"uv": [3.5, 0, 7, 4], "texture": "#0"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "color": 0, - "children": [ - { - "name": "open book", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4] - }, - 5 - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_2.json b/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_2.json deleted file mode 100644 index 6e49aff3..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_2.json +++ /dev/null @@ -1,163 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "0": "beautify:block/bookstack_2", - "particle": "beautify:block/bookstack_2" - }, - "render_type": "cutout", - "elements": [ - { - "from": [2.75, 0.5, 6], - "to": [8, 1.5, 16], - "rotation": {"angle": -45, "axis": "y", "origin": [9, 0, 8]}, - "faces": { - "north": {"uv": [7, 12, 10, 13], "texture": "#0"}, - "east": {"uv": [5, 12, 10, 12.5], "texture": "#0"}, - "south": {"uv": [7, 13, 10, 14], "texture": "#0"}, - "west": {"uv": [5, 13, 10, 14], "texture": "#0"}, - "up": {"uv": [6, 7, 9, 12], "texture": "#0"}, - "down": {"uv": [9, 7, 12, 12], "texture": "#0"} - } - }, - { - "from": [8, 0.5, 6], - "to": [8.75, 1, 16], - "rotation": {"angle": -45, "axis": "y", "origin": [9, 0, 8]}, - "faces": { - "north": {"uv": [7, 12, 7.375, 12.5], "texture": "#0"}, - "east": {"uv": [5, 12, 10, 12.5], "texture": "#0"}, - "south": {"uv": [7, 13, 7.375, 13.25], "texture": "#0"}, - "west": {"uv": [5, 13, 10, 13.5], "texture": "#0"}, - "up": {"uv": [6, 7, 6.375, 12], "texture": "#0"}, - "down": {"uv": [9, 7, 12, 12], "texture": "#0"} - } - }, - { - "from": [9.25, 0.5, 6], - "to": [10, 1, 16], - "rotation": {"angle": -45, "axis": "y", "origin": [9, 0, 8]}, - "faces": { - "north": {"uv": [7, 13, 7.375, 13.25], "texture": "#0"}, - "east": {"uv": [5, 13, 10, 13.5], "texture": "#0"}, - "south": {"uv": [7, 12, 7.375, 12.5], "texture": "#0"}, - "west": {"uv": [5, 12, 10, 12.5], "texture": "#0"}, - "up": {"uv": [6, 7, 6.375, 12], "rotation": 180, "texture": "#0"}, - "down": {"uv": [9, 7, 12, 12], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [10, 0.5, 6], - "to": [15.25, 1.5, 16], - "rotation": {"angle": -45, "axis": "y", "origin": [9, 0, 8]}, - "faces": { - "north": {"uv": [0, 12, 3, 13], "texture": "#0"}, - "east": {"uv": [0, 13, 5, 14], "texture": "#0"}, - "south": {"uv": [0, 13, 3, 14], "texture": "#0"}, - "west": {"uv": [0, 12, 5, 12.5], "texture": "#0"}, - "up": {"uv": [0, 7, 3, 12], "texture": "#0"}, - "down": {"uv": [3, 7, 6, 12], "texture": "#0"} - } - }, - { - "from": [8, 0, 6], - "to": [10, 0.5, 16], - "rotation": {"angle": -45, "axis": "y", "origin": [9, 0, 8]}, - "faces": { - "north": {"uv": [10, 12.5, 11, 12.75], "texture": "#0"}, - "east": {"uv": [10, 12.5, 15, 12.75], "texture": "#0"}, - "south": {"uv": [10, 12, 11, 12.25], "texture": "#0"}, - "west": {"uv": [10, 12, 15, 12.25], "texture": "#0"}, - "up": {"uv": [13, 7, 14, 12], "texture": "#0"}, - "down": {"uv": [12, 7, 13, 12], "texture": "#0"} - } - }, - { - "from": [11.5, 1.5, 9], - "to": [12, 1.75, 10], - "rotation": {"angle": -22.5, "axis": "y", "origin": [10.5, 1.75, 6.25]}, - "faces": { - "north": {"uv": [8.5, 0, 8.75, 0.125], "texture": "#0"}, - "east": {"uv": [9, 0, 9.5, 0.125], "texture": "#0"}, - "south": {"uv": [8.5, 0, 8.75, 0.125], "texture": "#0"}, - "west": {"uv": [9, 0, 9.5, 0.125], "texture": "#0"}, - "up": {"uv": [8.5, 0, 8.75, 0.5], "texture": "#0"}, - "down": {"uv": [9, 0, 9.25, 0.5], "texture": "#0"} - } - }, - { - "from": [11.5, 1.5, 2.75], - "to": [12, 1.75, 9], - "rotation": {"angle": -22.5, "axis": "y", "origin": [10.5, 1.75, 6.25]}, - "faces": { - "north": {"uv": [5, 0, 5.25, 0.125], "texture": "#0"}, - "east": {"uv": [3.5, 0, 6.625, 0.125], "texture": "#0"}, - "south": {"uv": [4.5, 0, 4.75, 0.125], "texture": "#0"}, - "west": {"uv": [3.5, 0, 6.625, 0.125], "texture": "#0"}, - "up": {"uv": [8, 0, 8.25, 3.125], "texture": "#0"}, - "down": {"uv": [8, 0, 8.25, 3.125], "texture": "#0"} - } - }, - { - "from": [11, 1.5, 3.75], - "to": [11.5, 1.75, 8], - "rotation": {"angle": -22.5, "axis": "y", "origin": [10.5, 1.75, 6.25]}, - "faces": { - "north": {"uv": [5.5, 0, 5.75, 0.125], "texture": "#0"}, - "east": {"uv": [4, 0, 6.125, 0.125], "texture": "#0"}, - "south": {"uv": [5, 0, 5.25, 0.125], "texture": "#0"}, - "west": {"uv": [4, 0, 6.125, 0.125], "texture": "#0"}, - "up": {"uv": [7.5, 0, 7.75, 2.125], "texture": "#0"}, - "down": {"uv": [7.5, 0, 7.75, 2.125], "texture": "#0"} - } - }, - { - "from": [12, 1.5, 1.75], - "to": [12.5, 1.75, 7], - "rotation": {"angle": -22.5, "axis": "y", "origin": [10.5, 1.75, 6.25]}, - "faces": { - "north": {"uv": [4, 0, 4.25, 0.125], "texture": "#0"}, - "east": {"uv": [3.5, 0, 6.125, 0.125], "texture": "#0"}, - "south": {"uv": [3.5, 0, 3.75, 0.125], "texture": "#0"}, - "west": {"uv": [3.5, 0, 6.125, 0.125], "texture": "#0"}, - "up": {"uv": [7, 0, 7.25, 2.625], "texture": "#0"}, - "down": {"uv": [7, 0, 7.25, 2.625], "texture": "#0"} - } - }, - { - "from": [9, 0, -3.5], - "to": [16, 1.5, 0.5], - "rotation": {"angle": -22.5, "axis": "y", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [0, 6, 3.5, 7], "texture": "#0"}, - "east": {"uv": [0.5, 4, 6, 6], "texture": "#0"}, - "south": {"uv": [2, 4, 5.5, 6], "texture": "#0"}, - "west": {"uv": [0, 4, 5.5, 6], "texture": "#0"}, - "up": {"uv": [0, 2, 3.5, 4], "texture": "#0"}, - "down": {"uv": [0, 0, 3.5, 2], "texture": "#0"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "color": 0, - "children": [ - { - "name": "open book", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3, 4] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [5, 6, 7, 8] - }, - 9 - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_3.json b/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_3.json deleted file mode 100644 index 6b7f8ad3..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_3.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "0": "beautify:block/bookstack_3", - "particle": "beautify:block/bookstack_3" - }, - "render_type": "cutout", - "elements": [ - { - "from": [2, 0, 8], - "to": [4, 9, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 0]}, - "faces": { - "north": {"uv": [14, 10, 16, 14.5], "texture": "#0"}, - "east": {"uv": [9, 10, 13, 14.5], "texture": "#0"}, - "south": {"uv": [13, 10, 14, 14.5], "texture": "#0"}, - "west": {"uv": [9, 10, 13, 14.5], "texture": "#0"}, - "up": {"uv": [0, 12.5, 7, 14.5], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 12.5, 7, 14.5], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [12, 0, 9.5], - "to": [14, 8, 15.5], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 0]}, - "faces": { - "north": {"uv": [14, 0, 16, 4], "texture": "#0"}, - "east": {"uv": [11, 0, 14, 4], "texture": "#0"}, - "south": {"uv": [14, 0, 14.5, 4], "texture": "#0"}, - "west": {"uv": [8, 0, 11, 4], "texture": "#0"}, - "up": {"uv": [7, 4, 11, 6], "rotation": 270, "texture": "#0"}, - "down": {"uv": [7, 4, 11, 6], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [8, 0, -3.25], - "to": [16, 1, 2.75], - "rotation": {"angle": -22.5, "axis": "y", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [6, 0, 7.5, 4], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 4, 6, 5.5], "texture": "#0"}, - "south": {"uv": [7.5, 0, 8, 4], "rotation": 270, "texture": "#0"}, - "west": {"uv": [0, 4, 6, 5.5], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0, 0, 3, 4], "rotation": 270, "texture": "#0"}, - "down": {"uv": [3, 0, 6, 4], "rotation": 270, "texture": "#0"} - } - }, - { - "from": [4, 0, 7.5], - "to": [7, 8, 14.5], - "rotation": {"angle": 0, "axis": "y", "origin": [1, 0, 0]}, - "faces": { - "north": {"uv": [9, 6, 11, 10], "texture": "#0"}, - "east": {"uv": [11, 4, 14.5, 8], "texture": "#0"}, - "south": {"uv": [14.5, 4, 16, 8], "texture": "#0"}, - "west": {"uv": [11, 4, 14.5, 8], "texture": "#0"}, - "up": {"uv": [10.5, 8, 16, 10], "rotation": 270, "texture": "#0"}, - "down": {"uv": [10.5, 8, 14, 9.5], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [9.5, -3.5, 8], - "to": [11.5, 6.5, 15], - "rotation": {"angle": 22.5, "axis": "z", "origin": [1, 0, 0]}, - "faces": { - "north": {"uv": [7, 6, 9, 11], "texture": "#0"}, - "east": {"uv": [0, 5.5, 3.5, 10.5], "texture": "#0"}, - "south": {"uv": [3.5, 5.5, 4.5, 10.5], "texture": "#0"}, - "west": {"uv": [3.5, 5.5, 7, 10.5], "texture": "#0"}, - "up": {"uv": [0, 10.5, 7, 12.5], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 10.5, 7, 12.5], "rotation": 90, "texture": "#0"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_4.json b/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_4.json deleted file mode 100644 index 4fecf525..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_4.json +++ /dev/null @@ -1,132 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "1": "beautify:block/bookstack_4", - "particle": "beautify:block/bookstack_4" - }, - "render_type": "cutout", - "elements": [ - { - "from": [4, 3, 4], - "to": [14, 5, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 7]}, - "faces": { - "north": {"uv": [11, 13, 16, 14], "texture": "#1"}, - "east": {"uv": [8, 5.5, 12, 7], "texture": "#1"}, - "south": {"uv": [6.5, 5.5, 11.5, 7], "texture": "#1"}, - "west": {"uv": [6, 5.5, 10, 7], "texture": "#1"}, - "up": {"uv": [6, 12, 11, 16], "texture": "#1"}, - "down": {"uv": [11, 12, 16, 16], "texture": "#1"} - } - }, - { - "from": [2, 0, 4], - "to": [14, 2, 12], - "faces": { - "north": {"uv": [6, 4, 12, 5.5], "texture": "#1"}, - "east": {"uv": [2, 5.5, 6, 7], "texture": "#1"}, - "south": {"uv": [0, 4, 6, 5.5], "texture": "#1"}, - "west": {"uv": [0, 5.5, 4, 7], "texture": "#1"}, - "up": {"uv": [0, 0, 6, 4], "texture": "#1"}, - "down": {"uv": [6, 0, 12, 4], "texture": "#1"} - } - }, - { - "from": [1.25, 2, 3.75], - "to": [13, 3, 11.75], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 7]}, - "faces": { - "north": {"uv": [6, 11, 11.875, 12], "texture": "#1"}, - "east": {"uv": [0.5, 12.5, 6, 14], "texture": "#1"}, - "south": {"uv": [0, 11, 5.875, 12.5], "texture": "#1"}, - "west": {"uv": [0, 12.5, 5.5, 14], "texture": "#1"}, - "up": {"uv": [0, 7, 5.875, 11], "texture": "#1"}, - "down": {"uv": [6, 7, 11.875, 11], "texture": "#1"} - } - }, - { - "from": [7, 0, 3.75], - "to": [8, 5, 3.75], - "rotation": {"angle": 0, "axis": "x", "origin": [8, 0, 3.5]}, - "faces": { - "north": {"uv": [12, 0, 12.5, 2.5], "texture": "#1"}, - "east": {"uv": [12, 0, 12, 2.5], "texture": "#1"}, - "south": {"uv": [12, 0, 12.5, 2.5], "texture": "#1"}, - "west": {"uv": [12, 0, 12, 2.5], "texture": "#1"}, - "up": {"uv": [12, 0, 12.5, 0], "texture": "#1"}, - "down": {"uv": [12, 0, 12.5, 0], "texture": "#1"} - } - }, - { - "from": [7, 0, 12.25], - "to": [8, 5, 12.25], - "faces": { - "north": {"uv": [12, 0, 12.5, 2.5], "texture": "#1"}, - "east": {"uv": [12, 0, 12, 2.5], "texture": "#1"}, - "south": {"uv": [12, 0, 12.5, 2.5], "texture": "#1"}, - "west": {"uv": [12, 0, 12, 2.5], "texture": "#1"}, - "up": {"uv": [12, 0, 12.5, 0], "texture": "#1"}, - "down": {"uv": [12, 0, 12.5, 0], "texture": "#1"} - } - }, - { - "from": [7, 5, 3.75], - "to": [8, 5, 12.25], - "faces": { - "north": {"uv": [12, 0, 12.5, 0], "rotation": 180, "texture": "#1"}, - "east": {"uv": [12, 0, 12, 4.125], "rotation": 270, "texture": "#1"}, - "south": {"uv": [12, 0, 12.5, 0], "texture": "#1"}, - "west": {"uv": [12, 0, 12, 4.125], "rotation": 90, "texture": "#1"}, - "up": {"uv": [12, 0, 12.5, 4.125], "rotation": 180, "texture": "#1"}, - "down": {"uv": [12, 0, 12.5, 4.125], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, 29, 0], - "translation": [-0.25, 1.25, 0.25], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "rotation": [0, 29, 0], - "translation": [-0.25, 1.25, 0.25], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [0, 29, 0], - "translation": [1.25, 5.25, 0.25], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_lefthand": { - "rotation": [0, 29, 0], - "translation": [1.25, 5.25, 0.25], - "scale": [0.65, 0.65, 0.65] - }, - "ground": { - "translation": [0, 4.25, 0], - "scale": [0.75, 0.75, 0.75] - }, - "gui": { - "rotation": [-162.25, 36, -180], - "translation": [0, 2.25, 0] - }, - "head": { - "rotation": [0, 45, 0], - "translation": [0, 14.5, 0] - }, - "fixed": { - "rotation": [0, -180, 0], - "translation": [0, 5.75, 0] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 0, 7], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_5.json b/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_5.json deleted file mode 100644 index 4254172d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_5.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "0": "beautify:block/bookstack_5", - "particle": "beautify:block/bookstack_5" - }, - "elements": [ - { - "from": [2.5, 0, 1.75], - "to": [10.5, 2, 13.75], - "rotation": {"angle": -22.5, "axis": "y", "origin": [6.5, 0, 9]}, - "faces": { - "north": {"uv": [3.5, 4.25, 5.5, 5.25], "texture": "#0"}, - "east": {"uv": [3.5, 5.25, 6.5, 6.25], "texture": "#0"}, - "south": {"uv": [5, 4.25, 7, 5.25], "texture": "#0"}, - "west": {"uv": [3.75, 4.25, 6.75, 5.25], "texture": "#0"}, - "up": {"uv": [5.5, 6.25, 7.5, 9.25], "texture": "#0"}, - "down": {"uv": [3.5, 6.25, 5.5, 9.25], "texture": "#0"} - } - }, - { - "from": [2.25, 5, 3.25], - "to": [9.25, 7, 14.25], - "rotation": {"angle": 22.5, "axis": "y", "origin": [6.5, 0, 9]}, - "faces": { - "north": {"uv": [3.5, 0, 5.25, 1], "texture": "#0"}, - "east": {"uv": [3.5, 1, 6.25, 1.5], "texture": "#0"}, - "south": {"uv": [5, 0, 6.75, 1], "texture": "#0"}, - "west": {"uv": [3.75, 0, 6.5, 1], "texture": "#0"}, - "up": {"uv": [5.25, 1.5, 7, 4.25], "texture": "#0"}, - "down": {"uv": [3.5, 1.5, 5.25, 4.25], "texture": "#0"} - } - }, - { - "from": [13.25, -2.75, 4], - "to": [15.25, 4.25, 15], - "rotation": {"angle": 22.5, "axis": "z", "origin": [6.5, 0, 9]}, - "faces": { - "north": {"uv": [0, 0, 1.75, 1], "rotation": 270, "texture": "#0"}, - "east": {"uv": [1.75, 1.5, 3.5, 4.25], "rotation": 90, "texture": "#0"}, - "south": {"uv": [1.5, 0, 3.25, 1], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 1.5, 1.75, 4.25], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0.25, 0, 3, 1], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 1, 2.75, 1.5], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [3.5, 2, 4], - "to": [10.5, 5, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [6.5, 0, 9]}, - "faces": { - "north": {"uv": [1.5, 4.25, 3.25, 5.25], "texture": "#0"}, - "east": {"uv": [0.25, 4.25, 3, 5.25], "texture": "#0"}, - "south": {"uv": [1.5, 4.25, 3.25, 5.25], "texture": "#0"}, - "west": {"uv": [0, 5.25, 2.75, 6.25], "texture": "#0"}, - "up": {"uv": [1.75, 6.25, 3.5, 9], "texture": "#0"}, - "down": {"uv": [0, 6.25, 1.75, 9], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, 29, 0], - "translation": [-0.25, 1.25, 0.25], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "rotation": [0, 29, 0], - "translation": [-0.25, 1.25, 0.25], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [0, 29, 0], - "translation": [1.25, 5.25, 0.25], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_lefthand": { - "rotation": [0, 29, 0], - "translation": [1.25, 5.25, 0.25], - "scale": [0.65, 0.65, 0.65] - }, - "ground": { - "translation": [0, 4.25, 0], - "scale": [0.75, 0.75, 0.75] - }, - "gui": { - "rotation": [-162.25, 36, -180], - "translation": [0, 2.25, 0] - }, - "head": { - "rotation": [0, 45, 0], - "translation": [0, 14.5, 0] - }, - "fixed": { - "rotation": [0, -180, 0], - "translation": [0, 5.75, 0] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 0, 8], - "color": 0, - "children": [0, 1, 2, 3] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_6.json b/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_6.json deleted file mode 100644 index 8ebd2501..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/bookstacks/bookstack_6.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "0": "beautify:block/bookstack_6", - "particle": "beautify:block/bookstack_6" - }, - "elements": [ - { - "from": [7, 2, -1.25], - "to": [15, 4, 9.75], - "rotation": {"angle": -22.5, "axis": "y", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [0, 4.25, 2, 5.25], "texture": "#0"}, - "east": {"uv": [0, 5.25, 2.75, 5.75], "texture": "#0"}, - "south": {"uv": [1.25, 4.25, 3.25, 5.25], "texture": "#0"}, - "west": {"uv": [0.25, 4.25, 3, 5.25], "texture": "#0"}, - "up": {"uv": [2, 8.5, 4, 5.75], "texture": "#0"}, - "down": {"uv": [0, 5.75, 2, 8.5], "texture": "#0"} - } - }, - { - "from": [-5.5, 8, 8], - "to": [4.5, 10, 15], - "rotation": {"angle": 45, "axis": "y", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [3.25, 0, 5.75, 1], "texture": "#0"}, - "east": {"uv": [3, 0, 4.75, 1], "texture": "#0"}, - "south": {"uv": [3, 1, 5.5, 1.5], "texture": "#0"}, - "west": {"uv": [4.25, 0, 6, 1], "texture": "#0"}, - "up": {"uv": [4.75, 1.5, 6.5, 4], "rotation": 90, "texture": "#0"}, - "down": {"uv": [3, 1.5, 4.75, 4], "rotation": 270, "texture": "#0"} - } - }, - { - "from": [4.75, 0, 2], - "to": [12.75, 2, 14], - "faces": { - "north": {"uv": [5.5, 4.25, 7.5, 5.25], "texture": "#0"}, - "east": {"uv": [4.25, 4.25, 7.25, 5.25], "texture": "#0"}, - "south": {"uv": [4, 4.25, 6, 5.25], "texture": "#0"}, - "west": {"uv": [4, 5.25, 7, 5.75], "texture": "#0"}, - "up": {"uv": [6, 5.75, 8, 8.75], "texture": "#0"}, - "down": {"uv": [4, 5.75, 6, 8.75], "texture": "#0"} - } - }, - { - "from": [5, 10, 4], - "to": [11, 12, 13], - "faces": { - "north": {"uv": [1.25, 0, 2.75, 1], "texture": "#0"}, - "east": {"uv": [0.25, 0, 2.5, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 1.5, 1], "texture": "#0"}, - "west": {"uv": [0, 1, 2.25, 1.5], "texture": "#0"}, - "up": {"uv": [1.5, 1.5, 3, 3.75], "texture": "#0"}, - "down": {"uv": [0, 1.5, 1.5, 3.75], "texture": "#0"} - } - }, - { - "from": [3.5, 6, 3], - "to": [11.5, 8, 14], - "faces": { - "north": {"uv": [6.5, 0, 8.5, 1], "texture": "#0"}, - "east": {"uv": [6.5, 1, 9.25, 1.5], "texture": "#0"}, - "south": {"uv": [7.75, 0, 9.75, 1], "texture": "#0"}, - "west": {"uv": [6.75, 0, 9.5, 1], "texture": "#0"}, - "up": {"uv": [6.5, 1.5, 8.5, 4.25], "texture": "#0"}, - "down": {"uv": [8.5, 1.5, 10.5, 4.25], "texture": "#0"} - } - }, - { - "from": [4.75, 4, 3], - "to": [11.75, 6, 14], - "rotation": {"angle": 22.5, "axis": "y", "origin": [8, 4, 8]}, - "faces": { - "north": {"uv": [12, 0, 13.75, 1], "texture": "#0"}, - "east": {"uv": [10.75, 0, 13.5, 1], "texture": "#0"}, - "south": {"uv": [10.5, 0, 12.25, 1], "texture": "#0"}, - "west": {"uv": [10.5, 1, 13.25, 1.5], "texture": "#0"}, - "up": {"uv": [14, 1.5, 12.25, 4.25], "texture": "#0"}, - "down": {"uv": [12.25, 1.5, 10.5, 4.25], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, 29, 0], - "translation": [-0.25, 1.25, 0.25], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "rotation": [0, 29, 0], - "translation": [-0.25, 1.25, 0.25], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [0, 29, 0], - "translation": [1.25, 5.25, 0.25], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_lefthand": { - "rotation": [0, 29, 0], - "translation": [1.25, 5.25, 0.25], - "scale": [0.65, 0.65, 0.65] - }, - "ground": { - "translation": [0, 4.25, 0], - "scale": [0.75, 0.75, 0.75] - }, - "gui": { - "rotation": [-162.25, 36, -180], - "translation": [0, 2.25, 0] - }, - "head": { - "rotation": [0, 45, 0], - "translation": [0, 14.5, 0] - }, - "fixed": { - "rotation": [0, -180, 0], - "translation": [0, 5.75, 0] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 4, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/botanist_workbench.json b/mod/beautify/src/main/resources/assets/beautify/models/block/botanist_workbench.json deleted file mode 100644 index 593a47d2..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/botanist_workbench.json +++ /dev/null @@ -1,382 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "0": "beautify:block/pots/dandelion_pot_grown", - "1": "minecraft:block/barrel_bottom", - "2": "minecraft:block/beehive_end", - "3": "minecraft:block/dark_oak_log", - "4": "minecraft:block/dirt", - "5": "minecraft:item/sweet_berries", - "6": "beautify:block/trellis_lilac_front", - "particle": "beautify:block/pots/dandelion_pot_grown" - }, - "render_type": "cutout", - "elements": [ - { - "from": [2, 10, 0.25], - "to": [16, 12, 14.25], - "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": [4, 5, 2.25], - "to": [14, 6, 12.25], - "faces": { - "north": {"uv": [1, 1, 13, 2], "texture": "#1"}, - "east": {"uv": [1, 1, 13, 2], "texture": "#1"}, - "south": {"uv": [1, 1, 13, 2], "texture": "#1"}, - "west": {"uv": [1, 1, 13, 2], "texture": "#1"}, - "up": {"uv": [1, 1, 13, 13], "texture": "#1"}, - "down": {"uv": [1, 1, 13, 13], "texture": "#1"} - } - }, - { - "from": [3.25, 0, 11], - "to": [5.25, 11, 13], - "faces": { - "north": {"uv": [1, 2, 3, 13], "texture": "#2"}, - "east": {"uv": [1, 2, 3, 13], "texture": "#2"}, - "south": {"uv": [1, 2, 3, 13], "texture": "#2"}, - "west": {"uv": [1, 2, 3, 13], "texture": "#2"}, - "up": {"uv": [1, 2, 3, 7], "texture": "#2"}, - "down": {"uv": [1, 2, 3, 7], "texture": "#2"} - } - }, - { - "from": [12.75, 0, 11], - "to": [14.75, 11, 13], - "faces": { - "north": {"uv": [1, 2, 3, 13], "texture": "#2"}, - "east": {"uv": [1, 2, 3, 13], "texture": "#2"}, - "south": {"uv": [1, 2, 3, 13], "texture": "#2"}, - "west": {"uv": [1, 2, 3, 13], "texture": "#2"}, - "up": {"uv": [1, 2, 3, 7], "texture": "#2"}, - "down": {"uv": [1, 2, 3, 7], "texture": "#2"} - } - }, - { - "from": [12.75, 0, 1.5], - "to": [14.75, 11, 3.5], - "faces": { - "north": {"uv": [1, 2, 3, 13], "texture": "#2"}, - "east": {"uv": [1, 2, 3, 13], "texture": "#2"}, - "south": {"uv": [1, 2, 3, 13], "texture": "#2"}, - "west": {"uv": [1, 2, 3, 13], "texture": "#2"}, - "up": {"uv": [1, 2, 3, 7], "texture": "#2"}, - "down": {"uv": [1, 2, 3, 7], "texture": "#2"} - } - }, - { - "from": [3.25, 0, 1.5], - "to": [5.25, 11, 3.5], - "faces": { - "north": {"uv": [1, 2, 3, 13], "texture": "#2"}, - "east": {"uv": [1, 2, 3, 13], "texture": "#2"}, - "south": {"uv": [1, 2, 3, 13], "texture": "#2"}, - "west": {"uv": [1, 2, 3, 13], "texture": "#2"}, - "up": {"uv": [1, 2, 3, 7], "texture": "#2"}, - "down": {"uv": [1, 2, 3, 7], "texture": "#2"} - } - }, - { - "from": [-0.25, 7.75, 5.5], - "to": [0.25, 9, 15.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 1.725, 10.8125], "rotation": 180, "texture": "#3"}, - "east": {"uv": [0, 0, 2.0625, 13], "rotation": 270, "texture": "#3"}, - "south": {"uv": [0, 0, 1.725, 10.8125], "texture": "#3"}, - "west": {"uv": [0, 0, 2.0625, 13], "rotation": 90, "texture": "#3"}, - "up": {"uv": [0, 0, 1.725, 13], "rotation": 180, "texture": "#3"}, - "down": {"uv": [0, 0, 1.725, 13], "texture": "#3"} - } - }, - { - "from": [-0.25, 4.75, 5.5], - "to": [0.25, 6, 15.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 1.725, 10.8125], "rotation": 180, "texture": "#3"}, - "east": {"uv": [0, 0, 2.0625, 13], "rotation": 270, "texture": "#3"}, - "south": {"uv": [0, 0, 1.725, 10.8125], "texture": "#3"}, - "west": {"uv": [0, 0, 2.0625, 13], "rotation": 90, "texture": "#3"}, - "up": {"uv": [0, 0, 1.725, 13], "rotation": 180, "texture": "#3"}, - "down": {"uv": [0, 0, 1.725, 13], "texture": "#3"} - } - }, - { - "from": [-0.25, 1.75, 5.5], - "to": [0.25, 3, 15.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 1.725, 10.8125], "rotation": 180, "texture": "#3"}, - "east": {"uv": [0, 0, 2.0625, 13], "rotation": 270, "texture": "#3"}, - "south": {"uv": [0, 0, 1.725, 10.8125], "texture": "#3"}, - "west": {"uv": [0, 0, 2.0625, 13], "rotation": 90, "texture": "#3"}, - "up": {"uv": [0, 0, 1.725, 13], "rotation": 180, "texture": "#3"}, - "down": {"uv": [0, 0, 1.725, 13], "texture": "#3"} - } - }, - { - "from": [0, 0.25, 7], - "to": [0.5, 10.25, 8.25], - "rotation": {"angle": -22.5, "axis": "z", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [6, 0, 7.75, 10], "texture": "#3"}, - "east": {"uv": [6, 0, 8, 10], "texture": "#3"}, - "south": {"uv": [6, 0, 7.75, 10], "texture": "#3"}, - "west": {"uv": [6, 0, 8, 10], "texture": "#3"}, - "up": {"uv": [6, 0, 7.75, 6.5], "texture": "#3"}, - "down": {"uv": [6, 0, 7.75, 6.5], "texture": "#3"} - } - }, - { - "from": [0, 0.25, 13], - "to": [0.5, 10.25, 14.25], - "rotation": {"angle": -22.5, "axis": "z", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [6, 0, 7.75, 10], "texture": "#3"}, - "east": {"uv": [6, 0, 8, 10], "texture": "#3"}, - "south": {"uv": [6, 0, 7.75, 10], "texture": "#3"}, - "west": {"uv": [6, 0, 8, 10], "texture": "#3"}, - "up": {"uv": [6, 0, 7.75, 6.5], "texture": "#3"}, - "down": {"uv": [6, 0, 7.75, 6.5], "texture": "#3"} - } - }, - { - "from": [0, 0.25, 10], - "to": [0.5, 10.25, 11.25], - "rotation": {"angle": -22.5, "axis": "z", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [6, 0, 7.75, 13], "texture": "#3"}, - "east": {"uv": [6, 0, 8, 13], "texture": "#3"}, - "south": {"uv": [6, 0, 7.75, 13], "texture": "#3"}, - "west": {"uv": [6, 0, 8, 13], "texture": "#3"}, - "up": {"uv": [6, 0, 7.75, 9.5], "texture": "#3"}, - "down": {"uv": [6, 0, 7.75, 9.5], "texture": "#3"} - } - }, - { - "from": [9.5, 12, 8.5], - "to": [13.5, 13, 12.5], - "faces": { - "north": {"uv": [4.5, 9, 5.5, 9.25], "texture": "#0"}, - "east": {"uv": [3.5, 9, 4.5, 9.25], "texture": "#0"}, - "south": {"uv": [5, 9, 6, 9.25], "texture": "#0"}, - "west": {"uv": [8.25, 1.75, 9.25, 2], "texture": "#0"}, - "up": {"uv": [8.25, 1.75, 9.25, 2.75], "texture": "#0"}, - "down": {"uv": [8.25, 1.75, 9.25, 2.75], "texture": "#0"} - } - }, - { - "from": [10.25, 14, 9.25], - "to": [12.75, 15, 11.75], - "faces": { - "north": {"uv": [4.125, 4, 7, 5.15], "texture": "#4"}, - "east": {"uv": [4.125, 4, 7, 5.15], "texture": "#4"}, - "south": {"uv": [4.125, 4, 7, 5.15], "texture": "#4"}, - "west": {"uv": [4.125, 4, 7, 5.15], "texture": "#4"}, - "up": {"uv": [4.125, 4, 7, 6.875], "texture": "#4"}, - "down": {"uv": [4.125, 4, 7, 6.875], "texture": "#4"} - } - }, - { - "from": [9.5, 13, 11.75], - "to": [13.5, 16, 12.5], - "faces": { - "north": {"uv": [5, 8.25, 6, 9], "texture": "#0"}, - "east": {"uv": [5, 8.25, 5.1875, 9], "texture": "#0"}, - "south": {"uv": [5, 8.25, 6, 9], "texture": "#0"}, - "west": {"uv": [5, 8.25, 5.1875, 9], "texture": "#0"}, - "up": {"uv": [5, 8.25, 6, 8.4375], "texture": "#0"}, - "down": {"uv": [5, 8.25, 6, 8.4375], "texture": "#0"} - } - }, - { - "from": [9.5, 13, 8.5], - "to": [13.5, 16, 9.25], - "faces": { - "north": {"uv": [4.5, 8, 5.5, 8.75], "texture": "#0"}, - "east": {"uv": [4.5, 8, 4.6875, 8.75], "texture": "#0"}, - "south": {"uv": [4.5, 8, 5.5, 8.75], "texture": "#0"}, - "west": {"uv": [4.5, 8, 4.6875, 8.75], "texture": "#0"}, - "up": {"uv": [4.5, 8, 5.5, 8.1875], "texture": "#0"}, - "down": {"uv": [4.5, 8, 5.5, 8.1875], "texture": "#0"} - } - }, - { - "from": [9.5, 13, 9.25], - "to": [10.25, 16, 11.75], - "faces": { - "north": {"uv": [4.75, 8, 4.9375, 8.75], "texture": "#0"}, - "east": {"uv": [4.75, 8, 5.375, 8.75], "texture": "#0"}, - "south": {"uv": [4.75, 8, 4.9375, 8.75], "texture": "#0"}, - "west": {"uv": [4.75, 8, 5.375, 8.75], "texture": "#0"}, - "up": {"uv": [4.75, 8, 4.9375, 8.625], "texture": "#0"}, - "down": {"uv": [4.75, 8, 4.9375, 8.625], "texture": "#0"} - } - }, - { - "from": [12.75, 13, 9.25], - "to": [13.5, 16, 11.75], - "faces": { - "north": {"uv": [3.75, 8, 3.9375, 8.75], "texture": "#0"}, - "east": {"uv": [3.75, 8, 4.375, 8.75], "texture": "#0"}, - "south": {"uv": [3.75, 8, 3.9375, 8.75], "texture": "#0"}, - "west": {"uv": [3.75, 8, 4.375, 8.75], "texture": "#0"}, - "up": {"uv": [3.75, 8, 3.9375, 8.625], "texture": "#0"}, - "down": {"uv": [3.75, 8, 3.9375, 8.625], "texture": "#0"} - } - }, - { - "from": [7.75, 6.25, 4.5], - "to": [15.75, 6.25, 12.5], - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "down": {"uv": [0, 16, 16, 0], "texture": "#5"} - } - }, - { - "from": [2.5, 12.25, 4.75], - "to": [15.5, 12.25, 14.75], - "faces": { - "north": {"uv": [0, 0, 3.25, 0], "texture": "#6"}, - "east": {"uv": [0, 0, 2.5, 0], "texture": "#6"}, - "south": {"uv": [0, 0, 3.25, 0], "texture": "#6"}, - "west": {"uv": [0, 0, 2.5, 0], "texture": "#6"}, - "up": {"uv": [6, 1, 16, 9], "texture": "#6"}, - "down": {"uv": [6, 1, 16, 9], "texture": "#6"} - } - }, - { - "from": [2, 12.25, 0], - "to": [16, 12.25, 5], - "faces": { - "north": {"uv": [4.5, 1.25, 8, 1.25], "texture": "#0"}, - "east": {"uv": [4.5, 1.25, 5.75, 1.25], "texture": "#0"}, - "south": {"uv": [4.5, 1.25, 8, 1.25], "texture": "#0"}, - "west": {"uv": [4.5, 1.25, 5.75, 1.25], "texture": "#0"}, - "up": {"uv": [4.5, 1.25, 8, 2.5], "texture": "#0"}, - "down": {"uv": [4.5, 1.25, 8, 2.5], "texture": "#0"} - } - }, - { - "from": [10, 0, 0], - "to": [16, 12, 0], - "faces": { - "north": {"uv": [6.5, 4.75, 8, 7.75], "texture": "#0"}, - "east": {"uv": [6.5, 4.75, 6.5, 7.75], "texture": "#0"}, - "south": {"uv": [6.5, 4.75, 8, 7.75], "texture": "#0"}, - "west": {"uv": [6.5, 4.75, 6.5, 7.75], "texture": "#0"}, - "up": {"uv": [6.5, 4.75, 8, 4.75], "texture": "#0"}, - "down": {"uv": [6.5, 4.75, 8, 4.75], "texture": "#0"} - } - }, - { - "from": [2, 0, 0], - "to": [8, 12, 0], - "faces": { - "north": {"uv": [0, 4.25, 1.5, 7.25], "texture": "#0"}, - "east": {"uv": [0, 4.25, 0, 7.25], "texture": "#0"}, - "south": {"uv": [0, 4.25, 1.5, 7.25], "texture": "#0"}, - "west": {"uv": [0, 4.25, 0, 7.25], "texture": "#0"}, - "up": {"uv": [0, 4.25, 1.5, 4.25], "texture": "#0"}, - "down": {"uv": [0, 4.25, 1.5, 4.25], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, -25, 0], - "translation": [0.5, 1, 0], - "scale": [0.4, 0.4, 0.4] - }, - "thirdperson_lefthand": { - "rotation": [0, -25, 0], - "translation": [0.5, 1, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_righthand": { - "rotation": [0, -25, 0], - "translation": [-1.5, 2, 0], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [0, -25, 0], - "translation": [-1.25, 2, 0.25], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.4, 0.4, 0.4] - }, - "gui": { - "rotation": [25, 45, 0], - "translation": [0, 1, 0], - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "translation": [-0.5, 14.5, 1.25] - }, - "fixed": { - "translation": [-1.25, 0, 3] - } - }, - "groups": [ - { - "name": "tisch", - "origin": [0, 0, 0], - "color": 0, - "children": [ - { - "name": "platten", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1] - }, - { - "name": "Beine", - "origin": [0, 0, 0], - "color": 0, - "children": [2, 3, 4, 5] - }, - { - "name": "lattice", - "origin": [0, 0, 0], - "color": 0, - "children": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [6, 7, 8] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [9, 10, 11] - } - ] - }, - { - "name": "Deco", - "origin": [0, 0, 0], - "color": 0, - "children": [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22] - } - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_black.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_black.json deleted file mode 100644 index 178b7f72..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_black.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/black_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_blue.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_blue.json deleted file mode 100644 index d6308cc4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_blue.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/blue_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_brown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_brown.json deleted file mode 100644 index 8398a7f1..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_brown.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/brown_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_cyan.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_cyan.json deleted file mode 100644 index 5461e31a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_cyan.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/cyan_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_gray.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_gray.json deleted file mode 100644 index 41a65d4f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_gray.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/gray_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_green.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_green.json deleted file mode 100644 index ce60a892..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_green.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/green_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_light_blue.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_light_blue.json deleted file mode 100644 index 138d2317..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_light_blue.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/light_blue_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_light_gray.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_light_gray.json deleted file mode 100644 index ba279f42..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_light_gray.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/light_gray_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_lime.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_lime.json deleted file mode 100644 index df263d74..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_lime.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/lime_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_magenta.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_magenta.json deleted file mode 100644 index 7ced8388..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_magenta.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/magenta_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off.json deleted file mode 100644 index 877cdc23..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_black.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_black.json deleted file mode 100644 index 840f5ce8..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_black.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/black_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_blue.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_blue.json deleted file mode 100644 index f39a856e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_blue.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/blue_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_brown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_brown.json deleted file mode 100644 index 264a168a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_brown.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/brown_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_cyan.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_cyan.json deleted file mode 100644 index 306ab021..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_cyan.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/cyan_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_gray.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_gray.json deleted file mode 100644 index d7ec70b8..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_gray.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/gray_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_green.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_green.json deleted file mode 100644 index 0083245d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_green.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/green_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_light_blue.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_light_blue.json deleted file mode 100644 index 8b43b173..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_light_blue.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/light_blue_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_light_gray.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_light_gray.json deleted file mode 100644 index 3bffc3f1..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_light_gray.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/light_gray_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_lime.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_lime.json deleted file mode 100644 index a40e3cf8..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_lime.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/lime_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_magenta.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_magenta.json deleted file mode 100644 index d9015538..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_magenta.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/magenta_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_orange.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_orange.json deleted file mode 100644 index 04c7c1b5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_orange.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/orange_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_pink.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_pink.json deleted file mode 100644 index a83cb337..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_pink.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/pink_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_purple.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_purple.json deleted file mode 100644 index 7f8870b3..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_purple.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/purple_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_red.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_red.json deleted file mode 100644 index 2d428105..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_red.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/red_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_white.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_white.json deleted file mode 100644 index ffbc6bd2..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_white.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/white_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_yellow.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_yellow.json deleted file mode 100644 index b07adb71..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_yellow.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/yellow_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_orange.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_orange.json deleted file mode 100644 index 5e8c2e76..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_orange.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/orange_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_pink.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_pink.json deleted file mode 100644 index 8d43e5da..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_pink.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/pink_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_purple.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_purple.json deleted file mode 100644 index f1202eb6..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_purple.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/purple_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_red.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_red.json deleted file mode 100644 index a424a7b8..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_red.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/red_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_white.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_white.json deleted file mode 100644 index 8b49d1af..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_white.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/white_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_yellow.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_yellow.json deleted file mode 100644 index ae1e1b15..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_yellow.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/yellow_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_black.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_black.json deleted file mode 100644 index 0f02b612..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_black.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/black_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_blue.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_blue.json deleted file mode 100644 index da5adae5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_blue.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/blue_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_brown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_brown.json deleted file mode 100644 index 5e337d3b..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_brown.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/brown_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_cyan.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_cyan.json deleted file mode 100644 index eae23648..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_cyan.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/cyan_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_gray.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_gray.json deleted file mode 100644 index 24f0a80b..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_gray.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/gray_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_green.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_green.json deleted file mode 100644 index d1429160..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_green.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/green_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_light_blue.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_light_blue.json deleted file mode 100644 index a71e1366..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_light_blue.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/light_blue_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_light_gray.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_light_gray.json deleted file mode 100644 index b4075fd1..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_light_gray.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/light_gray_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_lime.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_lime.json deleted file mode 100644 index 468f414a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_lime.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/lime_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_magenta.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_magenta.json deleted file mode 100644 index e6a2e283..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_magenta.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/magenta_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off.json deleted file mode 100644 index b747e5aa..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_black.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_black.json deleted file mode 100644 index a6404b48..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_black.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/black_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_blue.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_blue.json deleted file mode 100644 index 9d7bb814..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_blue.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/blue_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_brown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_brown.json deleted file mode 100644 index 8aa60682..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_brown.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/brown_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_cyan.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_cyan.json deleted file mode 100644 index c03e6ecd..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_cyan.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/cyan_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_gray.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_gray.json deleted file mode 100644 index 6b27c239..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_gray.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/gray_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_green.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_green.json deleted file mode 100644 index c829fc77..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_green.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/green_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_light_blue.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_light_blue.json deleted file mode 100644 index a51c6a00..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_light_blue.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/light_blue_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_light_gray.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_light_gray.json deleted file mode 100644 index 65c41059..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_light_gray.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/light_gray_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_lime.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_lime.json deleted file mode 100644 index bfbbcd23..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_lime.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/lime_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_magenta.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_magenta.json deleted file mode 100644 index 88863345..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_magenta.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/magenta_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_orange.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_orange.json deleted file mode 100644 index a51d086d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_orange.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/orange_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_pink.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_pink.json deleted file mode 100644 index 46403cc3..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_pink.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/pink_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_purple.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_purple.json deleted file mode 100644 index d65dab94..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_purple.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/purple_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_red.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_red.json deleted file mode 100644 index 6b57cd26..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_red.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/red_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_white.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_white.json deleted file mode 100644 index f607dba7..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_white.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/white_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_yellow.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_yellow.json deleted file mode 100644 index c59ba472..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_yellow.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/yellow_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_orange.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_orange.json deleted file mode 100644 index de32dfd9..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_orange.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/orange_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_pink.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_pink.json deleted file mode 100644 index 59774bcb..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_pink.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/pink_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_purple.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_purple.json deleted file mode 100644 index 93af9a54..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_purple.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/purple_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_red.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_red.json deleted file mode 100644 index 8554402e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_red.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/red_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_white.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_white.json deleted file mode 100644 index d66900e7..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_white.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/white_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_yellow.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_yellow.json deleted file mode 100644 index 38fb07b7..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_yellow.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/yellow_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/lamp_bamboo.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/lamp_bamboo.json deleted file mode 100644 index ae2191f5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/lamp_bamboo.json +++ /dev/null @@ -1,248 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "2": "beautify:block/chain", - "3": "beautify:block/bamboo_lamp_on", - "particle": "beautify:block/bamboo_lamp_on" - }, - "render_type": "cutout", - "elements": [ - { - "from": [2, 3, 13], - "to": [14, 10, 14], - "faces": { - "north": {"uv": [0, 0, 5.5, 3.5], "texture": "#3"}, - "east": {"uv": [0, 0, 0.5, 3.5], "texture": "#3"}, - "south": {"uv": [0, 0, 5.5, 3.5], "texture": "#3"}, - "west": {"uv": [0, 0, 0.5, 3.5], "texture": "#3"}, - "up": {"uv": [0, 0, 5.5, 0.5], "texture": "#3"}, - "down": {"uv": [0, 0, 5.5, 0.5], "texture": "#3"} - } - }, - { - "from": [2, 3, 2], - "to": [14, 10, 3], - "faces": { - "north": {"uv": [0, 0, 5.5, 3.5], "texture": "#3"}, - "east": {"uv": [0, 0, 0.5, 3.5], "texture": "#3"}, - "south": {"uv": [0, 0, 5.5, 3.5], "texture": "#3"}, - "west": {"uv": [0, 0, 0.5, 3.5], "texture": "#3"}, - "up": {"uv": [0, 0, 5.5, 0.5], "texture": "#3"}, - "down": {"uv": [0, 0, 5.5, 0.5], "texture": "#3"} - } - }, - { - "from": [2, 3, 3], - "to": [3, 10, 13], - "faces": { - "north": {"uv": [0.5, 6, 1, 9.5], "texture": "#3"}, - "east": {"uv": [0, 0, 5, 3.5], "texture": "#3"}, - "south": {"uv": [0.5, 6, 1, 9.5], "texture": "#3"}, - "west": {"uv": [0, 0, 5, 3.5], "texture": "#3"}, - "up": {"uv": [0, 0, 4.5, 0.5], "rotation": 90, "texture": "#3"}, - "down": {"uv": [0, 0, 4.5, 0.5], "rotation": 270, "texture": "#3"} - } - }, - { - "from": [13, 3, 3], - "to": [14, 10, 13], - "faces": { - "north": {"uv": [0.5, 6, 1, 9.5], "texture": "#3"}, - "east": {"uv": [0, 0, 5, 3.5], "texture": "#3"}, - "south": {"uv": [0.5, 6, 1, 9.5], "texture": "#3"}, - "west": {"uv": [0, 0, 5, 3.5], "texture": "#3"}, - "up": {"uv": [0, 0, 4.5, 0.5], "rotation": 90, "texture": "#3"}, - "down": {"uv": [0, 0, 4.5, 0.5], "rotation": 270, "texture": "#3"} - } - }, - { - "from": [4.5, 1, 4.5], - "to": [11.5, 12, 5.5], - "faces": { - "north": {"uv": [5.5, 0, 9, 5.5], "texture": "#3"}, - "east": {"uv": [5.5, 0, 6, 5.5], "texture": "#3"}, - "south": {"uv": [5.5, 0, 9, 5.5], "texture": "#3"}, - "west": {"uv": [5.5, 0, 6, 5.5], "texture": "#3"}, - "up": {"uv": [5.5, 0, 9, 0.5], "texture": "#3"}, - "down": {"uv": [5.5, 0, 9, 0.5], "texture": "#3"} - } - }, - { - "from": [4.5, 1, 10.5], - "to": [11.5, 12, 11.5], - "faces": { - "north": {"uv": [5.5, 0, 9, 5.5], "texture": "#3"}, - "east": {"uv": [5.5, 0, 6, 5.5], "texture": "#3"}, - "south": {"uv": [5.5, 0, 9, 5.5], "texture": "#3"}, - "west": {"uv": [5.5, 0, 6, 5.5], "texture": "#3"}, - "up": {"uv": [5.5, 0, 9, 0.5], "texture": "#3"}, - "down": {"uv": [5.5, 0, 9, 0.5], "texture": "#3"} - } - }, - { - "from": [10.5, 1, 5.5], - "to": [11.5, 12, 10.5], - "faces": { - "north": {"uv": [5.5, 0, 6, 5.5], "texture": "#3"}, - "east": {"uv": [5.5, 0, 8, 5.5], "texture": "#3"}, - "south": {"uv": [5.5, 0, 6, 5.5], "texture": "#3"}, - "west": {"uv": [5.5, 0, 8, 5.5], "texture": "#3"}, - "up": {"uv": [5.5, 0, 8, 0.5], "rotation": 270, "texture": "#3"}, - "down": {"uv": [5.5, 0, 8, 0.5], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [4.5, 1, 5.5], - "to": [5.5, 12, 10.5], - "faces": { - "north": {"uv": [5.5, 0, 6, 5.5], "texture": "#3"}, - "east": {"uv": [5.5, 0, 8, 5.5], "texture": "#3"}, - "south": {"uv": [5.5, 0, 6, 5.5], "texture": "#3"}, - "west": {"uv": [5.5, 0, 8, 5.5], "texture": "#3"}, - "up": {"uv": [5.5, 0, 8, 0.5], "rotation": 270, "texture": "#3"}, - "down": {"uv": [5.5, 0, 8, 0.5], "rotation": 90, "texture": "#3"} - } - }, - { - "from": [-7.25, 8, 10.75], - "to": [7.25, 9, 11.75], - "rotation": {"angle": 45, "axis": "y", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [0, 5.5, 7.25, 6], "texture": "#3"}, - "east": {"uv": [0, 5.5, 0.5, 6], "texture": "#3"}, - "south": {"uv": [0, 5.5, 7.25, 6], "texture": "#3"}, - "west": {"uv": [0, 5.5, 0.5, 6], "texture": "#3"}, - "up": {"uv": [0, 5, 0.5, 12.25], "rotation": 90, "texture": "#3"}, - "down": {"uv": [0, 5, 0.5, 12.25], "rotation": 270, "texture": "#3"} - } - }, - { - "from": [4, 8, -0.5], - "to": [18.5, 9, 0.5], - "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [0, 5.5, 7.25, 6], "texture": "#3"}, - "east": {"uv": [0, 5.5, 0.5, 6], "texture": "#3"}, - "south": {"uv": [0, 5.5, 7.25, 6], "texture": "#3"}, - "west": {"uv": [0, 5.5, 0.5, 6], "texture": "#3"}, - "up": {"uv": [0, 5, 0.5, 12.25], "rotation": 90, "texture": "#3"}, - "down": {"uv": [0, 5, 0.5, 12.25], "rotation": 270, "texture": "#3"} - } - }, - { - "name": "fassung", - "from": [6.5, 7, 6.5], - "to": [9.5, 9, 9.5], - "faces": { - "north": {"uv": [1, 3.5, 2.5, 4], "texture": "#3"}, - "east": {"uv": [1, 3.5, 2.5, 4], "texture": "#3"}, - "south": {"uv": [1, 3.5, 2.5, 4], "texture": "#3"}, - "west": {"uv": [1, 3.5, 2.5, 4], "texture": "#3"}, - "up": {"uv": [1, 3.5, 2.5, 5], "texture": "#3"}, - "down": {"uv": [1, 3.5, 2.5, 5], "texture": "#3"} - } - }, - { - "name": "birn e", - "from": [7, 4, 7], - "to": [9, 7, 9], - "faces": { - "north": {"uv": [0, 3.5, 1, 5], "texture": "#3"}, - "east": {"uv": [0, 3.5, 1, 5], "texture": "#3"}, - "south": {"uv": [0, 3.5, 1, 5], "texture": "#3"}, - "west": {"uv": [0, 3.5, 1, 5], "texture": "#3"}, - "up": {"uv": [0, 3.5, 1, 4.5], "texture": "#3"}, - "down": {"uv": [0, 4, 1, 5], "texture": "#3"} - } - }, - { - "from": [11.25, 9, -1.5], - "to": [11.25, 16, 1.5], - "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 3.5], "texture": "#2"}, - "east": {"uv": [0, 0, 1.5, 3.5], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 3.5], "texture": "#2"}, - "west": {"uv": [0, 0, 1.5, 3.5], "texture": "#2"}, - "up": {"uv": [0, 0, 1.5, 0], "rotation": 90, "texture": "#2"}, - "down": {"uv": [0, 0, 1.5, 0], "rotation": 270, "texture": "#2"} - } - }, - { - "from": [9.75, 9, 0], - "to": [12.75, 16, 0], - "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [1.5, 0, 3, 3.5], "texture": "#2"}, - "east": {"uv": [1.5, 0, 1.5, 3.5], "texture": "#2"}, - "south": {"uv": [1.5, 0, 3, 3.5], "texture": "#2"}, - "west": {"uv": [1.5, 0, 1.5, 3.5], "texture": "#2"}, - "up": {"uv": [1.5, 0, 3, 0], "texture": "#2"}, - "down": {"uv": [1.5, 0, 3, 0], "texture": "#2"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "translation": [0, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "translation": [0, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_lefthand": { - "translation": [0, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "ground": { - "translation": [0, 1.25, 0], - "scale": [0.75, 0.75, 0.75] - }, - "gui": { - "rotation": [15.36, -40.47, -0.32], - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "translation": [0, 11.5, 0] - }, - "fixed": { - "translation": [0, 0, -1] - } - }, - "groups": [ - { - "name": "bamboo_lamp", - "origin": [0, 0, 0], - "color": 0, - "children": [ - { - "name": "shirm aussen", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3] - }, - { - "name": "shirm innen", - "origin": [0, 0, 0], - "color": 0, - "children": [4, 5, 6, 7] - }, - { - "name": "halterung", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - }, - 11 - ] - }, - 12, - 13 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/lamp_bamboo_off.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/lamp_bamboo_off.json deleted file mode 100644 index 9c27ce4f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/lamp_bamboo_off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/lamp_bamboo", - "textures": { - "2": "beautify:block/chain", - "3": "beautify:block/bamboo_lamp_off", - "particle": "beautify:block/bamboo_lamp_off" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/lamp_jar.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/lamp_jar.json deleted file mode 100644 index b1ffd17f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/lamp_jar.json +++ /dev/null @@ -1,135 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "0": "beautify:block/jar", - "1": "minecraft:block/mushroom_block_inside", - "2": "beautify:block/chain", - "particle": "beautify:block/jar" - }, - "render_type": "cutout", - "elements": [ - { - "name": "korken", - "from": [6, 9.25, 6], - "to": [10, 10.25, 10], - "faces": { - "north": {"uv": [7, 4, 9, 4.5], "texture": "#1"}, - "east": {"uv": [7, 4, 9, 4.5], "texture": "#1"}, - "south": {"uv": [7, 4, 9, 4.5], "texture": "#1"}, - "west": {"uv": [7, 4, 9, 4.5], "texture": "#1"}, - "up": {"uv": [7, 4, 9, 6], "texture": "#1"}, - "down": {"uv": [7, 4, 9, 6], "texture": "#1"} - } - }, - { - "from": [5, 1, 5], - "to": [11, 8, 11], - "faces": { - "north": {"uv": [3, 0, 0, 3.5], "texture": "#0"}, - "east": {"uv": [3, 0, 0, 3.5], "texture": "#0"}, - "south": {"uv": [3, 0, 0, 3.5], "texture": "#0"}, - "west": {"uv": [3, 0, 0, 3.5], "texture": "#0"}, - "up": {"uv": [6.5, 0, 9.5, 3], "texture": "#0"}, - "down": {"uv": [6.5, 0, 9.5, 3], "texture": "#0"} - } - }, - { - "from": [5, 8.5, 5], - "to": [6, 9.5, 11], - "faces": { - "north": {"uv": [6.5, 0, 6, 0.5], "texture": "#0"}, - "east": {"uv": [6.5, 0, 3.5, 0.5], "texture": "#0"}, - "south": {"uv": [3.5, 0, 4, 0.5], "texture": "#0"}, - "west": {"uv": [6.5, 0, 3.5, 0.5], "texture": "#0"}, - "up": {"uv": [6.5, 0, 3.5, 0.5], "rotation": 90, "texture": "#0"}, - "down": {"uv": [6.5, 0, 3.5, 0.5], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [6, 8.5, 10], - "to": [10, 9.5, 11], - "faces": { - "north": {"uv": [4.5, 0, 6.5, 0.5], "texture": "#0"}, - "east": {"uv": [3.5, 0.5, 4, 1], "texture": "#0"}, - "south": {"uv": [6.5, 0, 4.5, 0.5], "texture": "#0"}, - "west": {"uv": [3.5, 0.5, 4, 1], "texture": "#0"}, - "up": {"uv": [4.5, 0, 6.5, 0.5], "rotation": 180, "texture": "#0"}, - "down": {"uv": [4.5, 0, 6.5, 0.5], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [6, 8.5, 5], - "to": [10, 9.5, 6], - "faces": { - "north": {"uv": [6.5, 0, 4.5, 0.5], "texture": "#0"}, - "east": {"uv": [4.5, 0.5, 5, 1], "texture": "#0"}, - "south": {"uv": [6.5, 0, 4.5, 0.5], "texture": "#0"}, - "west": {"uv": [4.5, 0.5, 5, 1], "texture": "#0"}, - "up": {"uv": [6.5, 0, 4.5, 0.5], "rotation": 180, "texture": "#0"}, - "down": {"uv": [6.5, 0, 4.5, 0.5], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [10, 8.5, 5], - "to": [11, 9.5, 11], - "faces": { - "north": {"uv": [3, 0, 3.5, 0.5], "texture": "#0"}, - "east": {"uv": [6.5, 0, 3.5, 0.5], "texture": "#0"}, - "south": {"uv": [6, 0, 6.5, 0.5], "texture": "#0"}, - "west": {"uv": [3.5, 0, 6.5, 0.5], "texture": "#0"}, - "up": {"uv": [3.5, 0, 6.5, 0.5], "rotation": 90, "texture": "#0"}, - "down": {"uv": [3.5, 0, 6.5, 0.5], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [5.5, 8, 5.5], - "to": [10.5, 9, 10.5], - "faces": { - "north": {"uv": [3, 0.5, 5.5, 1], "texture": "#0"}, - "east": {"uv": [3, 0.5, 5.5, 1], "texture": "#0"}, - "south": {"uv": [3, 0.5, 5.5, 1], "texture": "#0"}, - "west": {"uv": [3, 0.5, 5.5, 1], "texture": "#0"}, - "up": {"uv": [3, 1, 5.5, 3.5], "texture": "#0"}, - "down": {"uv": [3, 1, 5.5, 3.5], "texture": "#0"} - } - }, - { - "from": [11.25, 10, -1.5], - "to": [11.25, 16, 1.5], - "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 3], "texture": "#2"}, - "east": {"uv": [0, 0, 1.5, 3], "texture": "#2"}, - "south": {"uv": [0, 0, 0, 3], "texture": "#2"}, - "west": {"uv": [0, 0, 1.5, 3], "texture": "#2"}, - "up": {"uv": [0, 0, 1.5, 0], "rotation": 90, "texture": "#2"}, - "down": {"uv": [0, 0, 1.5, 0], "rotation": 270, "texture": "#2"} - } - }, - { - "from": [9.75, 10, 0], - "to": [12.75, 16, 0], - "rotation": {"angle": -45, "axis": "y", "origin": [0, 0, 0]}, - "faces": { - "north": {"uv": [1.5, 0, 3, 3], "texture": "#2"}, - "east": {"uv": [1.5, 0, 1.5, 3], "texture": "#2"}, - "south": {"uv": [1.5, 0, 3, 3], "texture": "#2"}, - "west": {"uv": [1.5, 0, 1.5, 3], "texture": "#2"}, - "up": {"uv": [1.5, 0, 3, 0], "texture": "#2"}, - "down": {"uv": [1.5, 0, 3, 0], "texture": "#2"} - } - } - ], - "groups": [ - 0, - { - "name": "flasche", - "origin": [8, 8, 8], - "color": 0, - "children": [1, 2, 3, 4, 5, 6] - }, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/light_bulb.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/light_bulb.json deleted file mode 100644 index 10ed1f70..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/light_bulb.json +++ /dev/null @@ -1,212 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "0": "beautify:block/light_bulb", - "particle": "beautify:block/light_bulb" - }, - "render_type": "cutout", - "elements": [ - { - "name": "sockel", - "from": [6.75, 10.5, 6.75], - "to": [9.25, 14, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.5, 8]}, - "faces": { - "north": {"uv": [5.5, 0, 7.5, 2.5], "rotation": 180, "texture": "#0"}, - "east": {"uv": [5.5, 0, 7.5, 2.5], "rotation": 180, "texture": "#0"}, - "south": {"uv": [5.5, 0, 7.5, 2.5], "rotation": 180, "texture": "#0"}, - "west": {"uv": [5.5, 0, 7.5, 2.5], "rotation": 180, "texture": "#0"}, - "up": {"uv": [7.5, 0, 9.5, 2], "rotation": 180, "texture": "#0"}, - "down": {"uv": [7.5, 0, 9.5, 2], "rotation": 180, "texture": "#0"} - } - }, - { - "name": "bulb_top", - "from": [6.25, 2.5, 6.25], - "to": [9.75, 4, 9.75], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.5, 8]}, - "faces": { - "north": {"uv": [9.5, 2, 12, 3], "rotation": 180, "texture": "#0"}, - "east": {"uv": [9.5, 2, 12, 3], "rotation": 180, "texture": "#0"}, - "south": {"uv": [9.5, 2, 12, 3], "rotation": 180, "texture": "#0"}, - "west": {"uv": [9.5, 2, 12, 3], "rotation": 180, "texture": "#0"}, - "up": {"uv": [5.5, 2.5, 8, 5], "rotation": 180, "texture": "#0"}, - "down": {"uv": [9.5, 0, 12, 2.5], "rotation": 180, "texture": "#0"} - } - }, - { - "name": "bulb_bottom", - "from": [6.25, 10.5, 6.25], - "to": [9.75, 11.5, 9.75], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.5, 8]}, - "faces": { - "north": {"uv": [9.5, 2.5, 12, 3.5], "rotation": 180, "texture": "#0"}, - "east": {"uv": [9.5, 2.5, 12, 3.5], "rotation": 180, "texture": "#0"}, - "south": {"uv": [9.5, 2.5, 12, 3.5], "rotation": 180, "texture": "#0"}, - "west": {"uv": [9.5, 2.5, 12, 3.5], "rotation": 180, "texture": "#0"}, - "up": {"uv": [9.5, 0, 12, 2.5], "rotation": 180, "texture": "#0"}, - "down": {"uv": [5.5, 2.5, 8, 5], "rotation": 180, "texture": "#0"} - } - }, - { - "name": "bulb", - "from": [5.75, 4, 5.75], - "to": [10.25, 10.5, 10.25], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 3.5, 8]}, - "faces": { - "north": {"uv": [12, 0, 15.5, 4.5], "rotation": 180, "texture": "#0"}, - "east": {"uv": [12, 0, 15.5, 4.5], "rotation": 180, "texture": "#0"}, - "south": {"uv": [12, 0, 15.5, 4.5], "rotation": 180, "texture": "#0"}, - "west": {"uv": [12, 0, 15.5, 4.5], "rotation": 180, "texture": "#0"}, - "up": {"uv": [12, 4.5, 15.5, 8], "rotation": 180, "texture": "#0"}, - "down": {"uv": [12, 4.5, 15.5, 8], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [8, 5, 5.25], - "to": [8, 9.5, 10.75], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 3.5, 8]}, - "faces": { - "north": {"uv": [0.5, 5, 0.5, 9], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0.5, 5, 5, 9], "rotation": 180, "texture": "#0"}, - "south": {"uv": [0.5, 5, 0.5, 9], "rotation": 180, "texture": "#0"}, - "west": {"uv": [0.5, 5, 5, 9], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0.5, 5, 0.5, 9.5], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0.5, 5, 0.5, 9.5], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [8, 9.5, 6], - "to": [8, 10.5, 10], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 3.5, 8]}, - "faces": { - "north": {"uv": [1.25, 9, 1.25, 10], "rotation": 180, "texture": "#0"}, - "east": {"uv": [1.25, 9, 4.25, 10], "rotation": 180, "texture": "#0"}, - "south": {"uv": [1.25, 9, 1.25, 10], "rotation": 180, "texture": "#0"}, - "west": {"uv": [1.25, 9, 4.25, 10], "rotation": 180, "texture": "#0"}, - "up": {"uv": [1.25, 9, 1.25, 12], "rotation": 180, "texture": "#0"}, - "down": {"uv": [1.25, 9, 1.25, 12], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [5.25, 5.5, 8], - "to": [10.75, 9.5, 8], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 3.5, 8]}, - "faces": { - "north": {"uv": [0.5, 5, 5, 9], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0.5, 5, 0.5, 9], "rotation": 180, "texture": "#0"}, - "south": {"uv": [0.5, 5, 5, 9], "rotation": 180, "texture": "#0"}, - "west": {"uv": [0.5, 5, 0.5, 9], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0.5, 5, 0.5, 9.5], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0.5, 5, 0.5, 9.5], "rotation": 270, "texture": "#0"} - } - }, - { - "from": [6, 9.5, 8], - "to": [10, 10.5, 8], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 3.5, 8]}, - "faces": { - "north": {"uv": [1.25, 9, 4.25, 10], "rotation": 180, "texture": "#0"}, - "east": {"uv": [1.25, 9, 1.25, 10], "rotation": 180, "texture": "#0"}, - "south": {"uv": [1.25, 9, 4.25, 10], "rotation": 180, "texture": "#0"}, - "west": {"uv": [1.25, 9, 1.25, 10], "rotation": 180, "texture": "#0"}, - "up": {"uv": [1.25, 9, 1.25, 12], "rotation": 90, "texture": "#0"}, - "down": {"uv": [1.25, 9, 1.25, 12], "rotation": 270, "texture": "#0"} - } - }, - { - "from": [8, 14, 6.5], - "to": [8, 16, 9.5], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1.5, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 0, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1.5, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, - "down": {"uv": [0, 0, 0, 1.5], "texture": "#0"} - } - }, - { - "from": [8, 14, 6.5], - "to": [8, 16, 9.5], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 1], "texture": "#0"}, - "east": {"uv": [0, 0, 1.5, 1], "texture": "#0"}, - "south": {"uv": [0, 0, 0, 1], "texture": "#0"}, - "west": {"uv": [0, 0, 1.5, 1], "texture": "#0"}, - "up": {"uv": [0, 0, 0, 1.5], "texture": "#0"}, - "down": {"uv": [0, 0, 0, 1.5], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [-180, 0, 0], - "translation": [0, 1.75, 0], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "rotation": [-180, 0, 0], - "translation": [0, 1.75, 0], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "rotation": [-180, 0, 0], - "translation": [1.5, 3.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_lefthand": { - "rotation": [-180, 0, 0], - "translation": [1.5, 3.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "ground": { - "rotation": [-180, 0, 0], - "translation": [0, 2, 0], - "scale": [0.75, 0.75, 0.75] - }, - "gui": { - "rotation": [21.25, -45, -180], - "translation": [0, 0.75, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "rotation": [-180, 0, 0], - "translation": [0, 12.25, 0] - }, - "fixed": { - "rotation": [0, 0, -180], - "translation": [0, 1.25, 0] - } - }, - "groups": [ - { - "name": "group", - "origin": [8, 0, 8], - "color": 0, - "children": [ - 0, - 1, - 2, - 3, - { - "name": "wire", - "origin": [0, 0, 0], - "color": 0, - "children": [4, 5] - }, - { - "name": "wire", - "origin": [0, 0, 0], - "color": 0, - "children": [6, 7] - }, - 8, - 9 - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/light_bulb_off.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/light_bulb_off.json deleted file mode 100644 index 55dda429..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/light_bulb_off.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/lamps/light_bulb", - "textures": { - "0": "beautify:block/hanging_light_bulb_off", - "particle": "beautify:block/hanging_light_bulb_off" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/standing_lamp_bamboo.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/standing_lamp_bamboo.json deleted file mode 100644 index f90abf56..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/standing_lamp_bamboo.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "0": "beautify:block/bamboo_lamp_on", - "particle": "beautify:block/bamboo_lamp_on" - }, - "render_type": "cutout", - "elements": [ - { - "from": [6, 2, 5], - "to": [10, 11, 6], - "faces": { - "north": {"uv": [6, 0, 8, 4.5], "texture": "#0"}, - "east": {"uv": [9, 0, 9.5, 4.5], "texture": "#0"}, - "south": {"uv": [6, 0, 8, 4.5], "texture": "#0"}, - "west": {"uv": [9, 0, 9.5, 4.5], "texture": "#0"}, - "up": {"uv": [6, 0, 8, 0.5], "texture": "#0"}, - "down": {"uv": [6, 0, 8, 0.5], "texture": "#0"} - } - }, - { - "from": [6, 2, 10], - "to": [10, 11, 11], - "faces": { - "north": {"uv": [6, 0, 8, 4.5], "texture": "#0"}, - "east": {"uv": [9, 0, 9.5, 4.5], "texture": "#0"}, - "south": {"uv": [6, 0, 8, 4.5], "texture": "#0"}, - "west": {"uv": [9, 0, 9.5, 4.5], "texture": "#0"}, - "up": {"uv": [6, 0, 8, 0.5], "texture": "#0"}, - "down": {"uv": [6, 0, 8, 0.5], "texture": "#0"} - } - }, - { - "from": [10, 2, 5], - "to": [11, 11, 11], - "faces": { - "north": {"uv": [5.5, 0, 6, 4.5], "texture": "#0"}, - "east": {"uv": [5.5, 0, 8.5, 4.5], "texture": "#0"}, - "south": {"uv": [8, 0, 8.5, 4.5], "texture": "#0"}, - "west": {"uv": [5.5, 0, 8.5, 4.5], "texture": "#0"}, - "up": {"uv": [5.5, 0, 8.5, 0.5], "rotation": 270, "texture": "#0"}, - "down": {"uv": [5.5, 0, 8.5, 0.5], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [5, 2, 5], - "to": [6, 11, 11], - "faces": { - "north": {"uv": [6, 0, 6.5, 4.5], "texture": "#0"}, - "east": {"uv": [5.5, 0, 8.5, 4.5], "texture": "#0"}, - "south": {"uv": [5.5, 0, 6, 4.5], "texture": "#0"}, - "west": {"uv": [5.5, 0, 8.5, 4.5], "texture": "#0"}, - "up": {"uv": [6, 0, 9, 0.5], "rotation": 270, "texture": "#0"}, - "down": {"uv": [6, 0, 9, 0.5], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [7, 3, 7], - "to": [9, 6, 9], - "faces": { - "north": {"uv": [0, 3.5, 1, 5], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 3.5, 1, 5], "rotation": 180, "texture": "#0"}, - "south": {"uv": [0, 3.5, 1, 5], "rotation": 180, "texture": "#0"}, - "west": {"uv": [0, 3.5, 1, 5], "rotation": 180, "texture": "#0"}, - "up": {"uv": [0, 4, 1, 5], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 4, 1, 5], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [6, 2, 6], - "to": [10, 3, 10], - "faces": { - "north": {"uv": [1, 4, 2.5, 4], "texture": "#0"}, - "east": {"uv": [1, 4, 2.5, 4], "texture": "#0"}, - "south": {"uv": [1, 4, 2.5, 4], "texture": "#0"}, - "west": {"uv": [1, 4, 2.5, 4], "texture": "#0"}, - "up": {"uv": [1, 3.5, 2.5, 5], "texture": "#0"}, - "down": {"uv": [1, 3.5, 2.5, 5], "texture": "#0"} - } - }, - { - "from": [4, 0, 4], - "to": [12, 2, 12], - "faces": { - "north": {"uv": [0, 15, 4, 16], "texture": "#0"}, - "east": {"uv": [0, 15, 4, 16], "texture": "#0"}, - "south": {"uv": [0, 15, 4, 16], "texture": "#0"}, - "west": {"uv": [0, 15, 4, 16], "texture": "#0"}, - "up": {"uv": [4, 12, 8, 16], "texture": "#0"}, - "down": {"uv": [4, 12, 8, 16], "texture": "#0"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [8, 8, 8], - "color": 0, - "children": [ - { - "name": "bamboo", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2, 3] - }, - { - "name": "fassung", - "origin": [0, 0, 0], - "color": 0, - "children": [4, 5] - }, - 6 - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/standing_lamp_bamboo_off.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/standing_lamp_bamboo_off.json deleted file mode 100644 index 956ec2fc..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/standing_lamp_bamboo_off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/standing_lamp_bamboo", - "texture_size": [32, 32], - "textures": { - "0": "beautify:block/bamboo_lamp_off", - "particle": "beautify:block/bamboo_lamp_off" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/standing_lamp_jar.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/standing_lamp_jar.json deleted file mode 100644 index 1bcbb4f0..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/standing_lamp_jar.json +++ /dev/null @@ -1,141 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "0": "beautify:block/jar", - "1": "block/mushroom_block_inside", - "particle": "beautify:block/jar" - }, - "render_type": "cutout", - "elements": [ - { - "name": "korken", - "from": [6, 8.25, 6], - "to": [10, 9.25, 10], - "faces": { - "north": {"uv": [7, 4, 9, 4.5], "texture": "#1"}, - "east": {"uv": [7, 4, 9, 4.5], "texture": "#1"}, - "south": {"uv": [7, 4, 9, 4.5], "texture": "#1"}, - "west": {"uv": [7, 4, 9, 4.5], "texture": "#1"}, - "up": {"uv": [7, 4, 9, 6], "texture": "#1"}, - "down": {"uv": [7, 4, 9, 6], "texture": "#1"} - } - }, - { - "from": [5, 0, 5], - "to": [11, 7, 11], - "faces": { - "north": {"uv": [3, 0, 0, 3.5], "texture": "#0"}, - "east": {"uv": [3, 0, 0, 3.5], "texture": "#0"}, - "south": {"uv": [3, 0, 0, 3.5], "texture": "#0"}, - "west": {"uv": [3, 0, 0, 3.5], "texture": "#0"}, - "up": {"uv": [6.5, 0, 9.5, 3], "texture": "#0"}, - "down": {"uv": [6.5, 0, 9.5, 3], "texture": "#0"} - } - }, - { - "from": [5, 7.5, 5], - "to": [6, 8.5, 11], - "faces": { - "north": {"uv": [6.5, 0, 6, 0.5], "texture": "#0"}, - "east": {"uv": [6.5, 0, 3.5, 0.5], "texture": "#0"}, - "south": {"uv": [3.5, 0, 4, 0.5], "texture": "#0"}, - "west": {"uv": [6.5, 0, 3.5, 0.5], "texture": "#0"}, - "up": {"uv": [6.5, 0, 3.5, 0.5], "rotation": 90, "texture": "#0"}, - "down": {"uv": [6.5, 0, 3.5, 0.5], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [6, 7.5, 10], - "to": [10, 8.5, 11], - "faces": { - "north": {"uv": [4.5, 0, 6.5, 0.5], "texture": "#0"}, - "east": {"uv": [3.5, 0.5, 4, 1], "texture": "#0"}, - "south": {"uv": [6.5, 0, 4.5, 0.5], "texture": "#0"}, - "west": {"uv": [3.5, 0.5, 4, 1], "texture": "#0"}, - "up": {"uv": [4.5, 0, 6.5, 0.5], "rotation": 180, "texture": "#0"}, - "down": {"uv": [4.5, 0, 6.5, 0.5], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [6, 7.5, 5], - "to": [10, 8.5, 6], - "faces": { - "north": {"uv": [6.5, 0, 4.5, 0.5], "texture": "#0"}, - "east": {"uv": [4.5, 0.5, 5, 1], "texture": "#0"}, - "south": {"uv": [6.5, 0, 4.5, 0.5], "texture": "#0"}, - "west": {"uv": [4.5, 0.5, 5, 1], "texture": "#0"}, - "up": {"uv": [6.5, 0, 4.5, 0.5], "rotation": 180, "texture": "#0"}, - "down": {"uv": [6.5, 0, 4.5, 0.5], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [10, 7.5, 5], - "to": [11, 8.5, 11], - "faces": { - "north": {"uv": [3, 0, 3.5, 0.5], "texture": "#0"}, - "east": {"uv": [6.5, 0, 3.5, 0.5], "texture": "#0"}, - "south": {"uv": [6, 0, 6.5, 0.5], "texture": "#0"}, - "west": {"uv": [3.5, 0, 6.5, 0.5], "texture": "#0"}, - "up": {"uv": [3.5, 0, 6.5, 0.5], "rotation": 90, "texture": "#0"}, - "down": {"uv": [3.5, 0, 6.5, 0.5], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [5.5, 7, 5.5], - "to": [10.5, 8, 10.5], - "faces": { - "north": {"uv": [3, 0.5, 5.5, 1], "texture": "#0"}, - "east": {"uv": [3, 0.5, 5.5, 1], "texture": "#0"}, - "south": {"uv": [3, 0.5, 5.5, 1], "texture": "#0"}, - "west": {"uv": [3, 0.5, 5.5, 1], "texture": "#0"}, - "up": {"uv": [3, 1, 5.5, 3.5], "texture": "#0"}, - "down": {"uv": [3, 1, 5.5, 3.5], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [0, 45, 0], - "translation": [0, 1.5, -0.5], - "scale": [0.55, 0.55, 0.55] - }, - "thirdperson_lefthand": { - "rotation": [0, 45, 0], - "translation": [0, 1.5, -0.5], - "scale": [0.55, 0.55, 0.55] - }, - "firstperson_righthand": { - "rotation": [0, 15.5, 0], - "translation": [1.5, 3.5, 0], - "scale": [0.75, 0.75, 0.75] - }, - "firstperson_lefthand": { - "rotation": [0, 15.5, 0], - "translation": [1.5, 3.5, 0], - "scale": [0.75, 0.75, 0.75] - }, - "ground": { - "translation": [0, 4.5, 0] - }, - "gui": { - "rotation": [25, -45, 0], - "translation": [0, 3, 0] - }, - "head": { - "translation": [0, 14.5, 0] - }, - "fixed": { - "translation": [0, 4, 0] - } - }, - "groups": [ - 0, - { - "name": "flasche", - "origin": [8, 8, 8], - "color": 0, - "children": [1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/standing_light_bulb.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/standing_light_bulb.json deleted file mode 100644 index 884a22ee..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/standing_light_bulb.json +++ /dev/null @@ -1,218 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "beautify:block/standing_light_bulb", - "particle": "beautify:block/standing_light_bulb" - }, - "render_type": "cutout", - "elements": [ - { - "name": "bein0", - "from": [7.5, -0.5, 4], - "to": [8.5, 3.5, 5], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 0, 6.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"} - } - }, - { - "name": "bein1", - "from": [7.5, -0.5, 11], - "to": [8.5, 3.5, 12], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 0, 9.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"} - } - }, - { - "name": "bein2", - "from": [11, -0.5, 7.5], - "to": [12, 3.5, 8.5], - "rotation": {"angle": 22.5, "axis": "z", "origin": [9.5, 0, 8]}, - "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"} - } - }, - { - "name": "bein3", - "from": [4, -0.5, 7.5], - "to": [5, 3.5, 8.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [6.5, 0, 8]}, - "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"} - } - }, - { - "name": "platform", - "from": [5.75, 4, 5.75], - "to": [10.25, 5, 10.25], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [1, 4, 5.5, 5], "texture": "#0"}, - "east": {"uv": [1, 4, 5.5, 5], "texture": "#0"}, - "south": {"uv": [1, 4, 5.5, 5], "texture": "#0"}, - "west": {"uv": [1, 4, 5.5, 5], "texture": "#0"}, - "up": {"uv": [1, 0, 5.5, 4.5], "texture": "#0"}, - "down": {"uv": [1, 0, 5.5, 4.5], "texture": "#0"} - } - }, - { - "name": "sockel", - "from": [7, 3.5, 7], - "to": [9, 6, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0.25, 0]}, - "faces": { - "north": {"uv": [5.5, 0, 7.5, 2.5], "texture": "#0"}, - "east": {"uv": [5.5, 0, 7.5, 2.5], "texture": "#0"}, - "south": {"uv": [5.5, 0, 7.5, 2.5], "texture": "#0"}, - "west": {"uv": [5.5, 0, 7.5, 2.5], "texture": "#0"}, - "up": {"uv": [7.5, 0, 9.5, 2], "texture": "#0"}, - "down": {"uv": [7.5, 0, 9.5, 2], "texture": "#0"} - } - }, - { - "name": "bulb_top", - "from": [6.75, 11, 6.75], - "to": [9.25, 12.5, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0.25, 0]}, - "faces": { - "north": {"uv": [9.5, 2, 12, 3.5], "texture": "#0"}, - "east": {"uv": [9.5, 2, 12, 3.5], "texture": "#0"}, - "south": {"uv": [9.5, 2, 12, 3.5], "texture": "#0"}, - "west": {"uv": [9.5, 2, 12, 3.5], "texture": "#0"}, - "up": {"uv": [9.5, 0, 12, 2.5], "texture": "#0"}, - "down": {"uv": [5.5, 2.5, 8, 5], "texture": "#0"} - } - }, - { - "name": "bulb_bottom", - "from": [6.75, 6, 6.75], - "to": [9.25, 7, 9.25], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0.25, 0]}, - "faces": { - "north": {"uv": [9.5, 2.5, 12, 3.5], "texture": "#0"}, - "east": {"uv": [9.5, 2.5, 12, 3.5], "texture": "#0"}, - "south": {"uv": [9.5, 2.5, 12, 3.5], "texture": "#0"}, - "west": {"uv": [9.5, 2.5, 12, 3.5], "texture": "#0"}, - "up": {"uv": [5.5, 2.5, 8, 5], "texture": "#0"}, - "down": {"uv": [9.5, 0, 12, 2.5], "texture": "#0"} - } - }, - { - "name": "bulb", - "from": [6.25, 7, 6.25], - "to": [9.75, 11.5, 9.75], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0.25, 0]}, - "faces": { - "north": {"uv": [12, 0, 15.5, 4.5], "texture": "#0"}, - "east": {"uv": [12, 0, 15.5, 4.5], "texture": "#0"}, - "south": {"uv": [12, 0, 15.5, 4.5], "texture": "#0"}, - "west": {"uv": [12, 0, 15.5, 4.5], "texture": "#0"}, - "up": {"uv": [12, 4.5, 15.5, 8], "texture": "#0"}, - "down": {"uv": [12, 4.5, 15.5, 8], "texture": "#0"} - } - }, - { - "from": [8, 7, 5.75], - "to": [8, 11, 10.25], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0.25, 8]}, - "faces": { - "north": {"uv": [0.5, 5, 0.5, 9], "texture": "#0"}, - "east": {"uv": [0.5, 5, 5, 9], "texture": "#0"}, - "south": {"uv": [0.5, 5, 0.5, 9], "texture": "#0"}, - "west": {"uv": [0.5, 5, 5, 9], "texture": "#0"}, - "up": {"uv": [0.5, 5, 0.5, 9.5], "texture": "#0"}, - "down": {"uv": [0.5, 5, 0.5, 9.5], "texture": "#0"} - } - }, - { - "from": [8, 6, 6.5], - "to": [8, 7, 9.5], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0.25, 8]}, - "faces": { - "north": {"uv": [1.25, 9, 1.25, 10], "texture": "#0"}, - "east": {"uv": [1.25, 9, 4.25, 10], "texture": "#0"}, - "south": {"uv": [1.25, 9, 1.25, 10], "texture": "#0"}, - "west": {"uv": [1.25, 9, 4.25, 10], "texture": "#0"}, - "up": {"uv": [1.25, 9, 1.25, 12], "texture": "#0"}, - "down": {"uv": [1.25, 9, 1.25, 12], "texture": "#0"} - } - }, - { - "from": [5.75, 7, 8], - "to": [10.25, 11, 8], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0.25, 8]}, - "faces": { - "north": {"uv": [0.5, 5, 5, 9], "texture": "#0"}, - "east": {"uv": [0.5, 5, 0.5, 9], "texture": "#0"}, - "south": {"uv": [0.5, 5, 5, 9], "texture": "#0"}, - "west": {"uv": [0.5, 5, 0.5, 9], "texture": "#0"}, - "up": {"uv": [0.5, 5, 0.5, 9.5], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0.5, 5, 0.5, 9.5], "rotation": 270, "texture": "#0"} - } - }, - { - "from": [6.5, 6, 8], - "to": [9.5, 7, 8], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0.25, 8]}, - "faces": { - "north": {"uv": [1.25, 9, 4.25, 10], "texture": "#0"}, - "east": {"uv": [1.25, 9, 1.25, 10], "texture": "#0"}, - "south": {"uv": [1.25, 9, 4.25, 10], "texture": "#0"}, - "west": {"uv": [1.25, 9, 1.25, 10], "texture": "#0"}, - "up": {"uv": [1.25, 9, 1.25, 12], "rotation": 90, "texture": "#0"}, - "down": {"uv": [1.25, 9, 1.25, 12], "rotation": 270, "texture": "#0"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [8, 0, 8], - "color": 0, - "children": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - { - "name": "wire", - "origin": [0, 0, 0], - "color": 0, - "children": [9, 10] - }, - { - "name": "wire", - "origin": [0, 0, 0], - "color": 0, - "children": [11, 12] - } - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/standing_light_bulb_off.json b/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/standing_light_bulb_off.json deleted file mode 100644 index 3daacc9e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/standing_light_bulb_off.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/lamps/standing_light_bulb", - "textures": { - "0": "beautify:block/standing_light_bulb_off", - "particle": "beautify:block/standing_light_bulb_off" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_alban_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_alban_picture_frame.json deleted file mode 100644 index 4d30b06f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_alban_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_alban", - "1": "beautify:block/acacia_frame_texture", - "particle": "beautify:block/acacia_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_aztec2_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_aztec2_picture_frame.json deleted file mode 100644 index 486bd4e2..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_aztec2_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec2", - "1": "beautify:block/acacia_frame_texture", - "particle": "beautify:block/acacia_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_aztec_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_aztec_picture_frame.json deleted file mode 100644 index ea024372..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_aztec_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec", - "1": "beautify:block/acacia_frame_texture", - "particle": "beautify:block/acacia_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_beach_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_beach_picture_frame.json deleted file mode 100644 index 37934c04..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_beach_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_beach", - "1": "beautify:block/acacia_frame_texture", - "particle": "beautify:block/acacia_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_bomb_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_bomb_picture_frame.json deleted file mode 100644 index 62bc9318..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_bomb_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_bomb", - "1": "beautify:block/acacia_frame_texture", - "particle": "beautify:block/acacia_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_flower_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_flower_picture_frame.json deleted file mode 100644 index 1be867c0..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_flower_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_flower", - "1": "beautify:block/acacia_frame_texture", - "particle": "beautify:block/acacia_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_frog_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_frog_picture_frame.json deleted file mode 100644 index eb635c1e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_frog_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_frog", - "1": "beautify:block/acacia_frame_texture", - "particle": "beautify:block/acacia_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_kebab_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_kebab_picture_frame.json deleted file mode 100644 index b49f641b..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_kebab_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_kebab", - "1": "beautify:block/acacia_frame_texture", - "particle": "beautify:block/acacia_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_plant_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_plant_picture_frame.json deleted file mode 100644 index 21f7d39e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_plant_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_plant", - "1": "beautify:block/acacia_frame_texture", - "particle": "beautify:block/acacia_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_river_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_river_picture_frame.json deleted file mode 100644 index 15199f78..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_river_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_river", - "1": "beautify:block/acacia_frame_texture", - "particle": "beautify:block/acacia_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_shroom_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_shroom_picture_frame.json deleted file mode 100644 index 97106d74..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_shroom_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_shroom", - "1": "beautify:block/acacia_frame_texture", - "particle": "beautify:block/acacia_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_sunset_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_sunset_picture_frame.json deleted file mode 100644 index faae1d33..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_sunset_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_sunset", - "1": "beautify:block/acacia_frame_texture", - "particle": "beautify:block/acacia_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_wasteland_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_wasteland_picture_frame.json deleted file mode 100644 index d999f34a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/acacia_wasteland_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_wasteland", - "1": "beautify:block/acacia_frame_texture", - "particle": "beautify:block/acacia_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/base_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/base_picture_frame.json deleted file mode 100644 index 8ce39ac1..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/base_picture_frame.json +++ /dev/null @@ -1,167 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "0": "minecraft:block/stone", - "1": "minecraft:block/stone", - "particle": "minecraft:block/stone" - }, - "elements": [ - { - "from": [7, 0, 9.5], - "to": [9, 4, 10.5], - "rotation": {"angle": -22.5, "axis": "x", "origin": [1, 0, 9.5]}, - "faces": { - "north": {"uv": [0, 8, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 12, 1, 16], "texture": "#1"}, - "south": {"uv": [2, 8, 4, 12], "texture": "#1"}, - "west": {"uv": [12, 0, 13, 4], "texture": "#1"}, - "up": {"uv": [3, 13, 1, 12], "texture": "#1"}, - "down": {"uv": [14, 12, 12, 13], "texture": "#1"} - } - }, - { - "from": [6, 0.75, 5.75], - "to": [10, 6.75, 5.75], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 0, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#0"}, - "east": {"uv": [0, 0, 0, 8], "texture": "#0"}, - "south": {"uv": [6, 0, 12, 8], "texture": "#0"}, - "west": {"uv": [0, 0, 0, 8], "texture": "#0"}, - "up": {"uv": [6, 0, 0, 0], "texture": "#0"}, - "down": {"uv": [6, 0, 0, 0], "texture": "#0"} - } - }, - { - "from": [5, -0.25, 5.5], - "to": [6, 7.75, 6.5], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 0, 7.5]}, - "faces": { - "north": {"uv": [4, 8, 5, 16], "texture": "#1"}, - "east": {"uv": [5, 8, 6, 16], "texture": "#1"}, - "south": {"uv": [6, 8, 7, 16], "texture": "#1"}, - "west": {"uv": [7, 8, 8, 16], "texture": "#1"}, - "up": {"uv": [4, 13, 3, 12], "texture": "#1"}, - "down": {"uv": [14, 0, 13, 1], "texture": "#1"} - } - }, - { - "from": [10, -0.25, 5.5], - "to": [11, 7.75, 6.5], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 0, 7.5]}, - "faces": { - "north": {"uv": [8, 8, 9, 16], "texture": "#1"}, - "east": {"uv": [9, 8, 10, 16], "texture": "#1"}, - "south": {"uv": [10, 8, 11, 16], "texture": "#1"}, - "west": {"uv": [11, 8, 12, 16], "texture": "#1"}, - "up": {"uv": [2, 14, 1, 13], "texture": "#1"}, - "down": {"uv": [14, 1, 13, 2], "texture": "#1"} - } - }, - { - "from": [6, 6.75, 5.5], - "to": [10, 7.75, 6.5], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 0, 7.5]}, - "faces": { - "north": {"uv": [12, 4, 16, 5], "texture": "#1"}, - "east": {"uv": [2, 13, 3, 14], "texture": "#1"}, - "south": {"uv": [12, 5, 16, 6], "texture": "#1"}, - "west": {"uv": [13, 2, 14, 3], "texture": "#1"}, - "up": {"uv": [16, 7, 12, 6], "texture": "#1"}, - "down": {"uv": [16, 7, 12, 8], "texture": "#1"} - } - }, - { - "from": [6, -0.25, 5.5], - "to": [10, 0.75, 6.5], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 0, 7.5]}, - "faces": { - "north": {"uv": [12, 8, 16, 9], "texture": "#1"}, - "east": {"uv": [3, 13, 4, 14], "texture": "#1"}, - "south": {"uv": [12, 9, 16, 10], "texture": "#1"}, - "west": {"uv": [13, 3, 14, 4], "texture": "#1"}, - "up": {"uv": [16, 11, 12, 10], "texture": "#1"}, - "down": {"uv": [16, 11, 12, 12], "texture": "#1"} - } - }, - { - "from": [5, -0.25, 6.5], - "to": [11, 7.75, 6.5], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 0, 7.5]}, - "faces": { - "north": {"uv": [0, 0, 6, 8], "texture": "#1"}, - "east": {"uv": [0, 0, 0, 8], "texture": "#1"}, - "south": {"uv": [6, 0, 12, 8], "texture": "#1"}, - "west": {"uv": [0, 0, 0, 8], "texture": "#1"}, - "up": {"uv": [6, 0, 0, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 0, 0], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [-155.5, 45, -180], - "translation": [0.5, 4.5, 1.25], - "scale": [0.75, 0.75, 0.75] - }, - "thirdperson_lefthand": { - "rotation": [-155.5, 45, -180], - "translation": [0.5, 4.5, 1.25], - "scale": [0.75, 0.75, 0.75] - }, - "firstperson_righthand": { - "rotation": [-167.47, -9.87, -178.8], - "translation": [0.5, 5.75, 2], - "scale": [0.75, 0.75, 0.75] - }, - "firstperson_lefthand": { - "rotation": [-167.47, -9.87, -178.8], - "translation": [0.5, 5.75, 2], - "scale": [0.75, 0.75, 0.75] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [-164.3, 42.23, 173.23], - "translation": [0, 2.25, 0], - "scale": [1.25, 1.25, 1.25] - }, - "head": { - "translation": [0, 14.25, 0] - }, - "fixed": { - "rotation": [-22, 0, 0], - "translation": [0, 4, -1.5] - } - }, - "groups": [ - { - "name": "Main", - "origin": [8, 8, 8], - "color": 0, - "children": [ - { - "name": "Stand", - "origin": [1, 0, 10], - "color": 0, - "children": [0] - }, - { - "name": "Picture", - "origin": [8, 0, 8], - "color": 0, - "children": [1] - }, - { - "name": "Frame", - "origin": [8, 0, 8], - "color": 0, - "children": [2, 3, 4, 5, 6] - } - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_alban_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_alban_picture_frame.json deleted file mode 100644 index 406f336e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_alban_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_alban", - "1": "beautify:block/birch_frame_texture", - "particle": "beautify:block/birch_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_aztec2_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_aztec2_picture_frame.json deleted file mode 100644 index 97fcf6e9..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_aztec2_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec2", - "1": "beautify:block/birch_frame_texture", - "particle": "beautify:block/birch_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_aztec_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_aztec_picture_frame.json deleted file mode 100644 index 6d275561..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_aztec_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec", - "1": "beautify:block/birch_frame_texture", - "particle": "beautify:block/birch_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_beach_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_beach_picture_frame.json deleted file mode 100644 index 0534263e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_beach_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_beach", - "1": "beautify:block/birch_frame_texture", - "particle": "beautify:block/birch_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_bomb_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_bomb_picture_frame.json deleted file mode 100644 index c3155e62..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_bomb_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_bomb", - "1": "beautify:block/birch_frame_texture", - "particle": "beautify:block/birch_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_flower_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_flower_picture_frame.json deleted file mode 100644 index 1a778de7..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_flower_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_flower", - "1": "beautify:block/birch_frame_texture", - "particle": "beautify:block/birch_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_frog_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_frog_picture_frame.json deleted file mode 100644 index 34b97254..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_frog_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_frog", - "1": "beautify:block/birch_frame_texture", - "particle": "beautify:block/birch_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_kebab_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_kebab_picture_frame.json deleted file mode 100644 index ac566e9b..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_kebab_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_kebab", - "1": "beautify:block/birch_frame_texture", - "particle": "beautify:block/birch_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_plant_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_plant_picture_frame.json deleted file mode 100644 index 34895c4a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_plant_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_plant", - "1": "beautify:block/birch_frame_texture", - "particle": "beautify:block/birch_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_river_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_river_picture_frame.json deleted file mode 100644 index 7d5445b8..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_river_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_river", - "1": "beautify:block/birch_frame_texture", - "particle": "beautify:block/birch_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_shroom_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_shroom_picture_frame.json deleted file mode 100644 index 010b710c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_shroom_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_shroom", - "1": "beautify:block/birch_frame_texture", - "particle": "beautify:block/birch_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_sunset_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_sunset_picture_frame.json deleted file mode 100644 index eb2ac7c8..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_sunset_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_sunset", - "1": "beautify:block/birch_frame_texture", - "particle": "beautify:block/birch_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_wasteland_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_wasteland_picture_frame.json deleted file mode 100644 index b6ebb7a3..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/birch_wasteland_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_wasteland", - "1": "beautify:block/birch_frame_texture", - "particle": "beautify:block/birch_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_alban_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_alban_picture_frame.json deleted file mode 100644 index 05cc5eb2..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_alban_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_alban", - "1": "beautify:block/cherry_frame_texture", - "particle": "beautify:block/cherry_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_aztec2_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_aztec2_picture_frame.json deleted file mode 100644 index c9aef407..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_aztec2_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec2", - "1": "beautify:block/cherry_frame_texture", - "particle": "beautify:block/cherry_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_aztec_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_aztec_picture_frame.json deleted file mode 100644 index 5e1341d0..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_aztec_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec", - "1": "beautify:block/cherry_frame_texture", - "particle": "beautify:block/cherry_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_beach_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_beach_picture_frame.json deleted file mode 100644 index 426d9508..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_beach_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_beach", - "1": "beautify:block/cherry_frame_texture", - "particle": "beautify:block/cherry_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_bomb_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_bomb_picture_frame.json deleted file mode 100644 index 3f5f8af7..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_bomb_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_bomb", - "1": "beautify:block/cherry_frame_texture", - "particle": "beautify:block/cherry_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_flower_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_flower_picture_frame.json deleted file mode 100644 index aab7a3eb..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_flower_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_flower", - "1": "beautify:block/cherry_frame_texture", - "particle": "beautify:block/cherry_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_frog_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_frog_picture_frame.json deleted file mode 100644 index e9cce714..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_frog_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_frog", - "1": "beautify:block/cherry_frame_texture", - "particle": "beautify:block/cherry_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_kebab_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_kebab_picture_frame.json deleted file mode 100644 index 6cf8fda7..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_kebab_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_kebab", - "1": "beautify:block/cherry_frame_texture", - "particle": "beautify:block/cherry_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_plant_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_plant_picture_frame.json deleted file mode 100644 index 88f448da..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_plant_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_plant", - "1": "beautify:block/cherry_frame_texture", - "particle": "beautify:block/cherry_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_river_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_river_picture_frame.json deleted file mode 100644 index ee6ea44b..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_river_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_river", - "1": "beautify:block/cherry_frame_texture", - "particle": "beautify:block/cherry_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_shroom_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_shroom_picture_frame.json deleted file mode 100644 index 0a46c256..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_shroom_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_shroom", - "1": "beautify:block/cherry_frame_texture", - "particle": "beautify:block/cherry_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_sunset_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_sunset_picture_frame.json deleted file mode 100644 index e0b0576f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_sunset_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_sunset", - "1": "beautify:block/cherry_frame_texture", - "particle": "beautify:block/cherry_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_wasteland_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_wasteland_picture_frame.json deleted file mode 100644 index 6a83c287..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/cherry_wasteland_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_wasteland", - "1": "beautify:block/cherry_frame_texture", - "particle": "beautify:block/cherry_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_alban_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_alban_picture_frame.json deleted file mode 100644 index ee7a5540..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_alban_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_alban", - "1": "beautify:block/crimson_frame_texture", - "particle": "beautify:block/crimson_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_aztec2_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_aztec2_picture_frame.json deleted file mode 100644 index 3534a012..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_aztec2_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec2", - "1": "beautify:block/crimson_frame_texture", - "particle": "beautify:block/crimson_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_aztec_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_aztec_picture_frame.json deleted file mode 100644 index 9c85a7f8..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_aztec_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec", - "1": "beautify:block/crimson_frame_texture", - "particle": "beautify:block/crimson_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_beach_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_beach_picture_frame.json deleted file mode 100644 index 46612770..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_beach_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_beach", - "1": "beautify:block/crimson_frame_texture", - "particle": "beautify:block/crimson_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_bomb_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_bomb_picture_frame.json deleted file mode 100644 index 789b698f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_bomb_picture_frame.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_bomb", - "1": "beautify:block/crimson_frame_texture", - "particle": "beautify:block/crimson_frame_texture" - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_flower_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_flower_picture_frame.json deleted file mode 100644 index 7fcd7372..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_flower_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_flower", - "1": "beautify:block/crimson_frame_texture", - "particle": "beautify:block/crimson_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_frog_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_frog_picture_frame.json deleted file mode 100644 index e54e1197..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_frog_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_frog", - "1": "beautify:block/crimson_frame_texture", - "particle": "beautify:block/crimson_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_kebab_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_kebab_picture_frame.json deleted file mode 100644 index b93e97de..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_kebab_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_kebab", - "1": "beautify:block/crimson_frame_texture", - "particle": "beautify:block/crimson_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_plant_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_plant_picture_frame.json deleted file mode 100644 index 0c5bf4e7..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_plant_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_plant", - "1": "beautify:block/crimson_frame_texture", - "particle": "beautify:block/crimson_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_river_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_river_picture_frame.json deleted file mode 100644 index f2aec615..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_river_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_river", - "1": "beautify:block/crimson_frame_texture", - "particle": "beautify:block/crimson_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_shroom_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_shroom_picture_frame.json deleted file mode 100644 index 628398bf..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_shroom_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_shroom", - "1": "beautify:block/crimson_frame_texture", - "particle": "beautify:block/crimson_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_sunset_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_sunset_picture_frame.json deleted file mode 100644 index d4c1face..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_sunset_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_sunset", - "1": "beautify:block/crimson_frame_texture", - "particle": "beautify:block/crimson_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_wasteland_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_wasteland_picture_frame.json deleted file mode 100644 index 8272421e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/crimson_wasteland_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_wasteland", - "1": "beautify:block/crimson_frame_texture", - "particle": "beautify:block/crimson_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_alban_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_alban_picture_frame.json deleted file mode 100644 index 09ee0f3a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_alban_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_alban", - "1": "beautify:block/dark_oak_frame_texture", - "particle": "beautify:block/dark_oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_aztec2_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_aztec2_picture_frame.json deleted file mode 100644 index 499a2b06..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_aztec2_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec2", - "1": "beautify:block/dark_oak_frame_texture", - "particle": "beautify:block/dark_oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_aztec_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_aztec_picture_frame.json deleted file mode 100644 index 2a32d66f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_aztec_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec", - "1": "beautify:block/dark_oak_frame_texture", - "particle": "beautify:block/dark_oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_beach_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_beach_picture_frame.json deleted file mode 100644 index c07438e2..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_beach_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_beach", - "1": "beautify:block/dark_oak_frame_texture", - "particle": "beautify:block/dark_oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_bomb_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_bomb_picture_frame.json deleted file mode 100644 index fafe79c9..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_bomb_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_bomb", - "1": "beautify:block/dark_oak_frame_texture", - "particle": "beautify:block/dark_oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_flower_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_flower_picture_frame.json deleted file mode 100644 index c162c2f0..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_flower_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_flower", - "1": "beautify:block/dark_oak_frame_texture", - "particle": "beautify:block/dark_oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_frog_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_frog_picture_frame.json deleted file mode 100644 index be021c06..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_frog_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_frog", - "1": "beautify:block/dark_oak_frame_texture", - "particle": "beautify:block/dark_oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_kebab_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_kebab_picture_frame.json deleted file mode 100644 index 3a332412..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_kebab_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_kebab", - "1": "beautify:block/dark_oak_frame_texture", - "particle": "beautify:block/dark_oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_plant_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_plant_picture_frame.json deleted file mode 100644 index 6e81d098..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_plant_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_plant", - "1": "beautify:block/dark_oak_frame_texture", - "particle": "beautify:block/dark_oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_river_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_river_picture_frame.json deleted file mode 100644 index 543950cd..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_river_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_river", - "1": "beautify:block/dark_oak_frame_texture", - "particle": "beautify:block/dark_oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_shroom_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_shroom_picture_frame.json deleted file mode 100644 index d24ddb76..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_shroom_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_shroom", - "1": "beautify:block/dark_oak_frame_texture", - "particle": "beautify:block/dark_oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_sunset_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_sunset_picture_frame.json deleted file mode 100644 index 2cc3dfe0..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_sunset_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_sunset", - "1": "beautify:block/dark_oak_frame_texture", - "particle": "beautify:block/dark_oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_wasteland_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_wasteland_picture_frame.json deleted file mode 100644 index f066cf70..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/dark_oak_wasteland_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_wasteland", - "1": "beautify:block/dark_oak_frame_texture", - "particle": "beautify:block/dark_oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_alban_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_alban_picture_frame.json deleted file mode 100644 index 43c6ed7c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_alban_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_alban", - "1": "beautify:block/jungle_frame_texture", - "particle": "beautify:block/jungle_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_aztec2_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_aztec2_picture_frame.json deleted file mode 100644 index 433db54e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_aztec2_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec2", - "1": "beautify:block/jungle_frame_texture", - "particle": "beautify:block/jungle_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_aztec_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_aztec_picture_frame.json deleted file mode 100644 index fde9828f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_aztec_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec", - "1": "beautify:block/jungle_frame_texture", - "particle": "beautify:block/jungle_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_beach_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_beach_picture_frame.json deleted file mode 100644 index d59234fd..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_beach_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_beach", - "1": "beautify:block/jungle_frame_texture", - "particle": "beautify:block/jungle_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_bomb_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_bomb_picture_frame.json deleted file mode 100644 index f846d086..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_bomb_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_bomb", - "1": "beautify:block/jungle_frame_texture", - "particle": "beautify:block/jungle_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_flower_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_flower_picture_frame.json deleted file mode 100644 index 6d03114f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_flower_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_flower", - "1": "beautify:block/jungle_frame_texture", - "particle": "beautify:block/jungle_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_frog_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_frog_picture_frame.json deleted file mode 100644 index 62780221..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_frog_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_frog", - "1": "beautify:block/jungle_frame_texture", - "particle": "beautify:block/jungle_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_kebab_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_kebab_picture_frame.json deleted file mode 100644 index c91f726f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_kebab_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_kebab", - "1": "beautify:block/jungle_frame_texture", - "particle": "beautify:block/jungle_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_plant_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_plant_picture_frame.json deleted file mode 100644 index 73447491..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_plant_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_plant", - "1": "beautify:block/jungle_frame_texture", - "particle": "beautify:block/jungle_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_river_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_river_picture_frame.json deleted file mode 100644 index dc5af104..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_river_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_river", - "1": "beautify:block/jungle_frame_texture", - "particle": "beautify:block/jungle_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_shroom_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_shroom_picture_frame.json deleted file mode 100644 index 6e533429..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_shroom_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_shroom", - "1": "beautify:block/jungle_frame_texture", - "particle": "beautify:block/jungle_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_sunset_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_sunset_picture_frame.json deleted file mode 100644 index c80af341..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_sunset_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_sunset", - "1": "beautify:block/jungle_frame_texture", - "particle": "beautify:block/jungle_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_wasteland_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_wasteland_picture_frame.json deleted file mode 100644 index a453e1fd..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/jungle_wasteland_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_wasteland", - "1": "beautify:block/jungle_frame_texture", - "particle": "beautify:block/jungle_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_alban_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_alban_picture_frame.json deleted file mode 100644 index c16166ff..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_alban_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_alban", - "1": "beautify:block/mangrove_frame_texture", - "particle": "beautify:block/mangrove_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_aztec2_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_aztec2_picture_frame.json deleted file mode 100644 index 40e31e7d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_aztec2_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec2", - "1": "beautify:block/mangrove_frame_texture", - "particle": "beautify:block/mangrove_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_aztec_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_aztec_picture_frame.json deleted file mode 100644 index a5e44bcd..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_aztec_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec", - "1": "beautify:block/mangrove_frame_texture", - "particle": "beautify:block/mangrove_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_beach_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_beach_picture_frame.json deleted file mode 100644 index 79e193d4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_beach_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_beach", - "1": "beautify:block/mangrove_frame_texture", - "particle": "beautify:block/mangrove_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_bomb_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_bomb_picture_frame.json deleted file mode 100644 index 0aeb3e28..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_bomb_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_bomb", - "1": "beautify:block/mangrove_frame_texture", - "particle": "beautify:block/mangrove_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_flower_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_flower_picture_frame.json deleted file mode 100644 index 7744fd91..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_flower_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_flower", - "1": "beautify:block/mangrove_frame_texture", - "particle": "beautify:block/mangrove_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_frog_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_frog_picture_frame.json deleted file mode 100644 index 00220a96..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_frog_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_frog", - "1": "beautify:block/mangrove_frame_texture", - "particle": "beautify:block/mangrove_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_kebab_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_kebab_picture_frame.json deleted file mode 100644 index 50140d64..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_kebab_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_kebab", - "1": "beautify:block/mangrove_frame_texture", - "particle": "beautify:block/mangrove_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_plant_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_plant_picture_frame.json deleted file mode 100644 index 00f454ef..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_plant_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_plant", - "1": "beautify:block/mangrove_frame_texture", - "particle": "beautify:block/mangrove_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_river_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_river_picture_frame.json deleted file mode 100644 index 7742c7b2..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_river_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_river", - "1": "beautify:block/mangrove_frame_texture", - "particle": "beautify:block/mangrove_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_shroom_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_shroom_picture_frame.json deleted file mode 100644 index 759d3537..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_shroom_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_shroom", - "1": "beautify:block/mangrove_frame_texture", - "particle": "beautify:block/mangrove_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_sunset_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_sunset_picture_frame.json deleted file mode 100644 index 79a2299b..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_sunset_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_sunset", - "1": "beautify:block/mangrove_frame_texture", - "particle": "beautify:block/mangrove_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_wasteland_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_wasteland_picture_frame.json deleted file mode 100644 index 9172963c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/mangrove_wasteland_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_wasteland", - "1": "beautify:block/mangrove_frame_texture", - "particle": "beautify:block/mangrove_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_alban_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_alban_picture_frame.json deleted file mode 100644 index 313670df..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_alban_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_alban", - "1": "beautify:block/oak_frame_texture", - "particle": "beautify:block/oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_aztec2_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_aztec2_picture_frame.json deleted file mode 100644 index 0a25c67b..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_aztec2_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec2", - "1": "beautify:block/oak_frame_texture", - "particle": "beautify:block/oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_aztec_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_aztec_picture_frame.json deleted file mode 100644 index 02ba978e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_aztec_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec", - "1": "beautify:block/oak_frame_texture", - "particle": "beautify:block/oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_beach_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_beach_picture_frame.json deleted file mode 100644 index 30cf17fa..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_beach_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_beach", - "1": "beautify:block/oak_frame_texture", - "particle": "beautify:block/oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_bomb_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_bomb_picture_frame.json deleted file mode 100644 index d2533afc..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_bomb_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_bomb", - "1": "beautify:block/oak_frame_texture", - "particle": "beautify:block/oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_flower_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_flower_picture_frame.json deleted file mode 100644 index 06a1c924..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_flower_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_flower", - "1": "beautify:block/oak_frame_texture", - "particle": "beautify:block/oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_frog_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_frog_picture_frame.json deleted file mode 100644 index 19a4ab52..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_frog_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_frog", - "1": "beautify:block/oak_frame_texture", - "particle": "beautify:block/oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_kebab_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_kebab_picture_frame.json deleted file mode 100644 index 0cc5219e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_kebab_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_kebab", - "1": "beautify:block/oak_frame_texture", - "particle": "beautify:block/oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_plant_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_plant_picture_frame.json deleted file mode 100644 index facd913e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_plant_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_plant", - "1": "beautify:block/oak_frame_texture", - "particle": "beautify:block/oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_river_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_river_picture_frame.json deleted file mode 100644 index 13bb8c95..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_river_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_river", - "1": "beautify:block/oak_frame_texture", - "particle": "beautify:block/oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_shroom_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_shroom_picture_frame.json deleted file mode 100644 index d430e27d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_shroom_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_shroom", - "1": "beautify:block/oak_frame_texture", - "particle": "beautify:block/oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_sunset_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_sunset_picture_frame.json deleted file mode 100644 index ef496a60..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_sunset_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_sunset", - "1": "beautify:block/oak_frame_texture", - "particle": "beautify:block/oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_wasteland_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_wasteland_picture_frame.json deleted file mode 100644 index 9404ad46..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/oak_wasteland_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_wasteland", - "1": "beautify:block/oak_frame_texture", - "particle": "beautify:block/oak_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_alban_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_alban_picture_frame.json deleted file mode 100644 index 88c4e54f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_alban_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_alban", - "1": "beautify:block/quartz_frame_texture", - "particle": "beautify:block/quartz_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_aztec2_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_aztec2_picture_frame.json deleted file mode 100644 index 536713c3..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_aztec2_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec2", - "1": "beautify:block/quartz_frame_texture", - "particle": "beautify:block/quartz_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_aztec_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_aztec_picture_frame.json deleted file mode 100644 index 05db3c4a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_aztec_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec", - "1": "beautify:block/quartz_frame_texture", - "particle": "beautify:block/quartz_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_beach_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_beach_picture_frame.json deleted file mode 100644 index 6de96086..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_beach_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_beach", - "1": "beautify:block/quartz_frame_texture", - "particle": "beautify:block/quartz_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_bomb_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_bomb_picture_frame.json deleted file mode 100644 index db4f1205..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_bomb_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_bomb", - "1": "beautify:block/quartz_frame_texture", - "particle": "beautify:block/quartz_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_flower_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_flower_picture_frame.json deleted file mode 100644 index c4b48b7d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_flower_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_flower", - "1": "beautify:block/quartz_frame_texture", - "particle": "beautify:block/quartz_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_frog_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_frog_picture_frame.json deleted file mode 100644 index e7c55eb8..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_frog_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_frog", - "1": "beautify:block/quartz_frame_texture", - "particle": "beautify:block/quartz_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_kebab_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_kebab_picture_frame.json deleted file mode 100644 index 5cfb7d0d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_kebab_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_kebab", - "1": "beautify:block/quartz_frame_texture", - "particle": "beautify:block/quartz_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_plant_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_plant_picture_frame.json deleted file mode 100644 index 549473f6..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_plant_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_plant", - "1": "beautify:block/quartz_frame_texture", - "particle": "beautify:block/quartz_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_river_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_river_picture_frame.json deleted file mode 100644 index 67b2a2cf..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_river_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_river", - "1": "beautify:block/quartz_frame_texture", - "particle": "beautify:block/quartz_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_shroom_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_shroom_picture_frame.json deleted file mode 100644 index cfe2f31a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_shroom_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_shroom", - "1": "beautify:block/quartz_frame_texture", - "particle": "beautify:block/quartz_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_sunset_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_sunset_picture_frame.json deleted file mode 100644 index 538e7c03..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_sunset_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_sunset", - "1": "beautify:block/quartz_frame_texture", - "particle": "beautify:block/quartz_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_wasteland_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_wasteland_picture_frame.json deleted file mode 100644 index 92bbb5e5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/quartz_wasteland_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_wasteland", - "1": "beautify:block/quartz_frame_texture", - "particle": "beautify:block/quartz_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_alban_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_alban_picture_frame.json deleted file mode 100644 index 0a6a7c94..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_alban_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_alban", - "1": "beautify:block/spruce_frame_texture", - "particle": "beautify:block/spruce_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_aztec2_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_aztec2_picture_frame.json deleted file mode 100644 index c74f14a7..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_aztec2_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec2", - "1": "beautify:block/spruce_frame_texture", - "particle": "beautify:block/spruce_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_aztec_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_aztec_picture_frame.json deleted file mode 100644 index cf267b66..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_aztec_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec", - "1": "beautify:block/spruce_frame_texture", - "particle": "beautify:block/spruce_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_beach_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_beach_picture_frame.json deleted file mode 100644 index 6e71ca2b..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_beach_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_beach", - "1": "beautify:block/spruce_frame_texture", - "particle": "beautify:block/spruce_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_bomb_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_bomb_picture_frame.json deleted file mode 100644 index b0b6d301..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_bomb_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_bomb", - "1": "beautify:block/spruce_frame_texture", - "particle": "beautify:block/spruce_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_flower_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_flower_picture_frame.json deleted file mode 100644 index 18d9979c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_flower_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_flower", - "1": "beautify:block/spruce_frame_texture", - "particle": "beautify:block/spruce_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_frog_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_frog_picture_frame.json deleted file mode 100644 index 1923026a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_frog_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_frog", - "1": "beautify:block/spruce_frame_texture", - "particle": "beautify:block/spruce_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_kebab_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_kebab_picture_frame.json deleted file mode 100644 index 95b3eecf..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_kebab_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_kebab", - "1": "beautify:block/spruce_frame_texture", - "particle": "beautify:block/spruce_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_plant_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_plant_picture_frame.json deleted file mode 100644 index 60bac549..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_plant_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_plant", - "1": "beautify:block/spruce_frame_texture", - "particle": "beautify:block/spruce_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_river_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_river_picture_frame.json deleted file mode 100644 index 1ccf8d59..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_river_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_river", - "1": "beautify:block/spruce_frame_texture", - "particle": "beautify:block/spruce_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_shroom_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_shroom_picture_frame.json deleted file mode 100644 index d31992b6..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_shroom_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_shroom", - "1": "beautify:block/spruce_frame_texture", - "particle": "beautify:block/spruce_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_sunset_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_sunset_picture_frame.json deleted file mode 100644 index 64269305..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_sunset_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_sunset", - "1": "beautify:block/spruce_frame_texture", - "particle": "beautify:block/spruce_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_wasteland_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_wasteland_picture_frame.json deleted file mode 100644 index c003de03..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/spruce_wasteland_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_wasteland", - "1": "beautify:block/spruce_frame_texture", - "particle": "beautify:block/spruce_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_alban_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_alban_picture_frame.json deleted file mode 100644 index 854266d1..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_alban_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_alban", - "1": "beautify:block/warped_frame_texture", - "particle": "beautify:block/warped_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_aztec2_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_aztec2_picture_frame.json deleted file mode 100644 index 34b46a59..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_aztec2_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec2", - "1": "beautify:block/warped_frame_texture", - "particle": "beautify:block/warped_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_aztec_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_aztec_picture_frame.json deleted file mode 100644 index ef6ec325..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_aztec_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_aztec", - "1": "beautify:block/warped_frame_texture", - "particle": "beautify:block/warped_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_beach_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_beach_picture_frame.json deleted file mode 100644 index ffe52b1f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_beach_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_beach", - "1": "beautify:block/warped_frame_texture", - "particle": "beautify:block/warped_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_bomb_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_bomb_picture_frame.json deleted file mode 100644 index f14554e2..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_bomb_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_bomb", - "1": "beautify:block/warped_frame_texture", - "particle": "beautify:block/warped_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_flower_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_flower_picture_frame.json deleted file mode 100644 index b550564a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_flower_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_flower", - "1": "beautify:block/warped_frame_texture", - "particle": "beautify:block/warped_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_frog_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_frog_picture_frame.json deleted file mode 100644 index 5675bfa0..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_frog_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_frog", - "1": "beautify:block/warped_frame_texture", - "particle": "beautify:block/warped_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_kebab_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_kebab_picture_frame.json deleted file mode 100644 index f658e890..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_kebab_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_kebab", - "1": "beautify:block/warped_frame_texture", - "particle": "beautify:block/warped_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_plant_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_plant_picture_frame.json deleted file mode 100644 index a2e5be34..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_plant_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_plant", - "1": "beautify:block/warped_frame_texture", - "particle": "beautify:block/warped_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_river_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_river_picture_frame.json deleted file mode 100644 index 1ce879d1..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_river_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_river", - "1": "beautify:block/warped_frame_texture", - "particle": "beautify:block/warped_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_shroom_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_shroom_picture_frame.json deleted file mode 100644 index e14464c8..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_shroom_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_shroom", - "1": "beautify:block/warped_frame_texture", - "particle": "beautify:block/warped_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_sunset_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_sunset_picture_frame.json deleted file mode 100644 index fff5b628..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_sunset_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_sunset", - "1": "beautify:block/warped_frame_texture", - "particle": "beautify:block/warped_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_wasteland_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_wasteland_picture_frame.json deleted file mode 100644 index e7a966fd..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pictureframes/warped_wasteland_picture_frame.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/base_picture_frame", - "textures": { - "0": "beautify:block/motive_wasteland", - "1": "beautify:block/warped_frame_texture", - "particle": "beautify:block/warped_frame_texture" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/allium/allium_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/allium/allium_pot.json deleted file mode 100644 index ca47375e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/allium/allium_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/allium_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/allium/allium_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/allium/allium_pot_grown.json deleted file mode 100644 index 6d9f132d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/allium/allium_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/allium_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/allium/standing_allium_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/allium/standing_allium_pot.json deleted file mode 100644 index 7fee1a68..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/allium/standing_allium_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/allium_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/allium/standing_allium_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/allium/standing_allium_pot_grown.json deleted file mode 100644 index 081084ff..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/allium/standing_allium_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/allium_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/azure_bluet/azure_bluet_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/azure_bluet/azure_bluet_pot.json deleted file mode 100644 index bb14a6c1..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/azure_bluet/azure_bluet_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/azure_bluet_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/azure_bluet/azure_bluet_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/azure_bluet/azure_bluet_pot_grown.json deleted file mode 100644 index a8956423..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/azure_bluet/azure_bluet_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/azure_bluet_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/azure_bluet/standing_azure_bluet_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/azure_bluet/standing_azure_bluet_pot.json deleted file mode 100644 index 86390b88..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/azure_bluet/standing_azure_bluet_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/azure_bluet_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/azure_bluet/standing_azure_bluet_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/azure_bluet/standing_azure_bluet_pot_grown.json deleted file mode 100644 index 07184c84..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/azure_bluet/standing_azure_bluet_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/azure_bluet_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/hanging_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/hanging_pot.json deleted file mode 100644 index 5b72d08b..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/hanging_pot.json +++ /dev/null @@ -1,304 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "0": "beautify:block/hanging_pot", - "particle": "block/terracotta" - }, - "render_type": "cutout", - "elements": [ - { - "from": [5, 5, 5], - "to": [11, 6, 11], - "faces": { - "north": {"uv": [9.5, 4.5, 11, 4.75], "texture": "#0"}, - "east": {"uv": [9.5, 4.75, 11, 5], "texture": "#0"}, - "south": {"uv": [9.5, 5, 11, 5.25], "texture": "#0"}, - "west": {"uv": [9.5, 5.25, 11, 5.5], "texture": "#0"}, - "up": {"uv": [1.5, 9.5, 0, 8], "texture": "#0"}, - "down": {"uv": [9.5, 0, 8, 1.5], "texture": "#0"} - } - }, - { - "from": [11, 5, 5], - "to": [12, 8, 11], - "faces": { - "north": {"uv": [8, 9.5, 8.25, 10.25], "texture": "#0"}, - "east": {"uv": [8, 7.75, 9.5, 8.5], "texture": "#0"}, - "south": {"uv": [8.25, 9.5, 8.5, 10.25], "texture": "#0"}, - "west": {"uv": [8, 8.5, 9.5, 9.25], "texture": "#0"}, - "up": {"uv": [7.25, 11, 7, 9.5], "texture": "#0"}, - "down": {"uv": [7.5, 9.5, 7.25, 11], "texture": "#0"} - } - }, - { - "from": [4, 5, 5], - "to": [5, 8, 11], - "faces": { - "north": {"uv": [9.5, 8.25, 9.75, 9], "texture": "#0"}, - "east": {"uv": [6, 8.75, 7.5, 9.5], "texture": "#0"}, - "south": {"uv": [8.5, 9.5, 8.75, 10.25], "texture": "#0"}, - "west": {"uv": [3, 9.25, 4.5, 10], "texture": "#0"}, - "up": {"uv": [7.75, 11, 7.5, 9.5], "texture": "#0"}, - "down": {"uv": [8, 9.5, 7.75, 11], "texture": "#0"} - } - }, - { - "from": [4, 5, 4], - "to": [12, 8, 5], - "faces": { - "north": {"uv": [8, 5.5, 10, 6.25], "texture": "#0"}, - "east": {"uv": [8.75, 9.5, 9, 10.25], "texture": "#0"}, - "south": {"uv": [6, 8, 8, 8.75], "texture": "#0"}, - "west": {"uv": [9, 9.5, 9.25, 10.25], "texture": "#0"}, - "up": {"uv": [9.5, 9.5, 7.5, 9.25], "texture": "#0"}, - "down": {"uv": [2, 9.5, 0, 9.75], "texture": "#0"} - } - }, - { - "from": [4, 5, 11], - "to": [12, 8, 12], - "faces": { - "north": {"uv": [8, 6.25, 10, 7], "texture": "#0"}, - "east": {"uv": [9.5, 9, 9.75, 9.75], "texture": "#0"}, - "south": {"uv": [8, 7, 10, 7.75], "texture": "#0"}, - "west": {"uv": [9.25, 9.5, 9.5, 10.25], "texture": "#0"}, - "up": {"uv": [11.5, 0.25, 9.5, 0], "texture": "#0"}, - "down": {"uv": [11.5, 0.25, 9.5, 0.5], "texture": "#0"} - } - }, - { - "from": [5, 0, 5], - "to": [11, 5, 11], - "faces": { - "north": {"uv": [3, 8, 4.5, 9.25], "texture": "#0"}, - "east": {"uv": [8, 3, 9.5, 4.25], "texture": "#0"}, - "south": {"uv": [8, 4.25, 9.5, 5.5], "texture": "#0"}, - "west": {"uv": [4.5, 8, 6, 9.25], "texture": "#0"}, - "up": {"uv": [3, 9.5, 1.5, 8], "texture": "#0"}, - "down": {"uv": [9.5, 1.5, 8, 3], "texture": "#0"} - } - }, - { - "from": [7.5, 7.25, 4], - "to": [8.5, 16.25, 5], - "rotation": {"angle": 22.5, "axis": "x", "origin": [5, 8, 5]}, - "faces": { - "north": {"uv": [4.5, 9.25, 4.75, 11.25], "texture": "#0"}, - "east": {"uv": [4.75, 9.25, 5, 11.25], "texture": "#0"}, - "south": {"uv": [5, 9.25, 5.25, 11.25], "texture": "#0"}, - "west": {"uv": [5.25, 9.25, 5.5, 11.25], "texture": "#0"}, - "up": {"uv": [1.25, 10, 1, 9.75], "texture": "#0"}, - "down": {"uv": [10, 1, 9.75, 1.25], "texture": "#0"} - } - }, - { - "from": [4, 7.25, 7.5], - "to": [5, 16.25, 8.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [5, 8, 11]}, - "faces": { - "north": {"uv": [5.5, 9.25, 5.75, 11.25], "texture": "#0"}, - "east": {"uv": [5.75, 9.25, 6, 11.25], "texture": "#0"}, - "south": {"uv": [9.5, 0.5, 9.75, 2.5], "texture": "#0"}, - "west": {"uv": [2, 9.5, 2.25, 11.5], "texture": "#0"}, - "up": {"uv": [1.5, 10, 1.25, 9.75], "texture": "#0"}, - "down": {"uv": [10, 1.25, 9.75, 1.5], "texture": "#0"} - } - }, - { - "from": [7.5, 7.25, 11], - "to": [8.5, 16.25, 12], - "rotation": {"angle": -22.5, "axis": "x", "origin": [11, 8, 11]}, - "faces": { - "north": {"uv": [2.25, 9.5, 2.5, 11.5], "texture": "#0"}, - "east": {"uv": [2.5, 9.5, 2.75, 11.5], "texture": "#0"}, - "south": {"uv": [9.5, 2.5, 9.75, 4.5], "texture": "#0"}, - "west": {"uv": [2.75, 9.5, 3, 11.5], "texture": "#0"}, - "up": {"uv": [1.75, 10, 1.5, 9.75], "texture": "#0"}, - "down": {"uv": [10, 1.5, 9.75, 1.75], "texture": "#0"} - } - }, - { - "from": [11, 7.25, 7.5], - "to": [12, 16.25, 8.5], - "rotation": {"angle": 22.5, "axis": "z", "origin": [11, 8, 5]}, - "faces": { - "north": {"uv": [6, 9.5, 6.25, 11.5], "texture": "#0"}, - "east": {"uv": [6.25, 9.5, 6.5, 11.5], "texture": "#0"}, - "south": {"uv": [6.5, 9.5, 6.75, 11.5], "texture": "#0"}, - "west": {"uv": [6.75, 9.5, 7, 11.5], "texture": "#0"}, - "up": {"uv": [2, 10, 1.75, 9.75], "texture": "#0"}, - "down": {"uv": [10, 1.75, 9.75, 2], "texture": "#0"} - } - }, - { - "from": [7, 15, 7], - "to": [9, 16, 9], - "faces": { - "north": {"uv": [0, 9.75, 0.5, 10], "texture": "#0"}, - "east": {"uv": [0.5, 9.75, 1, 10], "texture": "#0"}, - "south": {"uv": [9.75, 0.5, 10.25, 0.75], "texture": "#0"}, - "west": {"uv": [9.75, 0.75, 10.25, 1], "texture": "#0"}, - "up": {"uv": [8, 9.25, 7.5, 8.75], "texture": "#0"}, - "down": {"uv": [10, 7.75, 9.5, 8.25], "texture": "#0"} - } - }, - { - "from": [11.25, 4.75, 7.5], - "to": [12.25, 7.75, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [4.75, 10, 5, 10.75], "texture": "#0"}, - "east": {"uv": [9.5, 2.75, 9.75, 3.5], "texture": "#0"}, - "south": {"uv": [5.5, 9.5, 5.75, 10.25], "texture": "#0"}, - "west": {"uv": [9.5, 1.75, 9.75, 2.5], "texture": "#0"}, - "up": {"uv": [2.25, 10.5, 2.5, 10.75], "texture": "#0"}, - "down": {"uv": [5, 9.75, 5.25, 10], "texture": "#0"} - } - }, - { - "from": [7.5, 4.75, 3.75], - "to": [8.5, 7.75, 4.75], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [9.5, 2.75, 9.75, 3.5], "texture": "#0"}, - "east": {"uv": [5.5, 9.5, 5.75, 10.25], "texture": "#0"}, - "south": {"uv": [9.5, 1.75, 9.75, 2.5], "texture": "#0"}, - "west": {"uv": [4.75, 10, 5, 10.75], "texture": "#0"}, - "up": {"uv": [2.25, 10.5, 2.5, 10.75], "rotation": 270, "texture": "#0"}, - "down": {"uv": [5, 9.75, 5.25, 10], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [3.75, 4.75, 7.5], - "to": [4.75, 7.75, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [5.5, 9.5, 5.75, 10.25], "texture": "#0"}, - "east": {"uv": [9.5, 1.75, 9.75, 2.5], "texture": "#0"}, - "south": {"uv": [4.75, 10, 5, 10.75], "texture": "#0"}, - "west": {"uv": [9.5, 2.75, 9.75, 3.5], "texture": "#0"}, - "up": {"uv": [2.25, 10.5, 2.5, 10.75], "rotation": 180, "texture": "#0"}, - "down": {"uv": [5, 9.75, 5.25, 10], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [7.5, 4.75, 11.25], - "to": [8.5, 7.75, 12.25], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [9.5, 1.75, 9.75, 2.5], "texture": "#0"}, - "east": {"uv": [4.75, 10, 5, 10.75], "texture": "#0"}, - "south": {"uv": [9.5, 2.75, 9.75, 3.5], "texture": "#0"}, - "west": {"uv": [5.5, 9.5, 5.75, 10.25], "texture": "#0"}, - "up": {"uv": [2.25, 10.5, 2.5, 10.75], "rotation": 90, "texture": "#0"}, - "down": {"uv": [5, 9.75, 5.25, 10], "rotation": 270, "texture": "#0"} - } - }, - { - "from": [4.5, 4, 4.5], - "to": [11.5, 5, 11.5], - "faces": { - "north": {"uv": [4.75, 10, 6.5, 10.25], "texture": "#0"}, - "east": {"uv": [4.75, 10.75, 6.5, 11], "texture": "#0"}, - "south": {"uv": [4.75, 10.75, 6.5, 11], "texture": "#0"}, - "west": {"uv": [4.75, 10, 6.5, 10.25], "texture": "#0"}, - "up": {"uv": [4.5, 9.5, 6.25, 11.25], "texture": "#0"}, - "down": {"uv": [4.5, 9.5, 6.25, 11.25], "texture": "#0"} - } - }, - { - "from": [8, 0, 0], - "to": [8, 16, 16], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 4], "texture": "#0"}, - "east": {"uv": [4, 0, 8, 4], "texture": "#0"}, - "south": {"uv": [0, 0, 0, 4], "texture": "#0"}, - "west": {"uv": [4, 4, 8, 8], "texture": "#0"}, - "up": {"uv": [0, 4, 0, 0], "texture": "#0"}, - "down": {"uv": [0, 0, 0, 4], "texture": "#0"} - } - }, - { - "from": [0, 0, 8], - "to": [16, 16, 8], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 4, 4], "texture": "#0"}, - "east": {"uv": [0, 0, 0, 4], "texture": "#0"}, - "south": {"uv": [0, 4, 4, 8], "texture": "#0"}, - "west": {"uv": [0, 0, 0, 4], "texture": "#0"}, - "up": {"uv": [0, 4, 0, 0], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 0, 4], "rotation": 90, "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [67.54, -29.2, 0.06], - "translation": [0, -2.75, -4.5], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "rotation": [67.54, -29.2, 0.06], - "translation": [0, -2.75, -4.5], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [0, 50.75, 0], - "translation": [0.75, 3.25, 0], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_lefthand": { - "rotation": [0, 50.75, 0], - "translation": [0.75, 3.25, 0], - "scale": [0.65, 0.65, 0.65] - }, - "ground": { - "translation": [0, 1.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "gui": { - "rotation": [25.75, -45, 0], - "translation": [0, 0.5, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "translation": [0, 14.25, 0] - } - }, - "groups": [ - { - "name": "test", - "origin": [8, 8, 8], - "color": 0, - "children": [ - { - "name": "Erde", - "origin": [0, 0, 0], - "color": 0, - "children": [0] - }, - { - "name": "Topf", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4, 5] - }, - { - "name": "Seile", - "origin": [-3, 8, -3], - "color": 0, - "children": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15] - }, - { - "name": "Rose", - "origin": [0, 0, 0], - "color": 0, - "children": [16, 17] - } - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/hanging_pot_flat.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/hanging_pot_flat.json deleted file mode 100644 index adeb14c1..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/hanging_pot_flat.json +++ /dev/null @@ -1,557 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "beautify:block/pots/vine_pot", - "2": "beautify:block/pots/vine_pot_overlay", - "particle": "block/terracotta" - }, - "elements": [ - { - "from": [5, 6, 5], - "to": [11, 7, 11], - "faces": { - "north": {"uv": [9.5, 4.5, 11, 4.75], "texture": "#1"}, - "east": {"uv": [9.5, 4.75, 11, 5], "texture": "#1"}, - "south": {"uv": [9.5, 5, 11, 5.25], "texture": "#1"}, - "west": {"uv": [9.5, 5.25, 11, 5.5], "texture": "#1"}, - "up": {"uv": [1.5, 9.5, 0, 8], "texture": "#1"}, - "down": {"uv": [9.5, 0, 8, 1.5], "texture": "#1"} - } - }, - { - "from": [11, 5, 5], - "to": [12, 8, 11], - "faces": { - "north": {"uv": [8, 9.5, 8.25, 10.25], "texture": "#1"}, - "east": {"uv": [8, 7.75, 9.5, 8.5], "texture": "#1"}, - "south": {"uv": [8.25, 9.5, 8.5, 10.25], "texture": "#1"}, - "west": {"uv": [8, 8.5, 9.5, 9.25], "texture": "#1"}, - "up": {"uv": [7.25, 11, 7, 9.5], "texture": "#1"}, - "down": {"uv": [7.5, 9.5, 7.25, 11], "texture": "#1"} - } - }, - { - "from": [4, 5, 5], - "to": [5, 8, 11], - "faces": { - "north": {"uv": [9.5, 8.25, 9.75, 9], "texture": "#1"}, - "east": {"uv": [6, 8.75, 7.5, 9.5], "texture": "#1"}, - "south": {"uv": [8.5, 9.5, 8.75, 10.25], "texture": "#1"}, - "west": {"uv": [3, 9.25, 4.5, 10], "texture": "#1"}, - "up": {"uv": [7.75, 11, 7.5, 9.5], "texture": "#1"}, - "down": {"uv": [8, 9.5, 7.75, 11], "texture": "#1"} - } - }, - { - "from": [4, 5, 4], - "to": [12, 8, 5], - "faces": { - "north": {"uv": [8, 5.5, 10, 6.25], "texture": "#1"}, - "east": {"uv": [8.75, 9.5, 9, 10.25], "texture": "#1"}, - "south": {"uv": [6, 8, 8, 8.75], "texture": "#1"}, - "west": {"uv": [9, 9.5, 9.25, 10.25], "texture": "#1"}, - "up": {"uv": [9.5, 9.5, 7.5, 9.25], "texture": "#1"}, - "down": {"uv": [2, 9.5, 0, 9.75], "texture": "#1"} - } - }, - { - "from": [4, 5, 11], - "to": [12, 8, 12], - "faces": { - "north": {"uv": [8, 6.25, 10, 7], "texture": "#1"}, - "east": {"uv": [9.5, 9, 9.75, 9.75], "texture": "#1"}, - "south": {"uv": [8, 7, 10, 7.75], "texture": "#1"}, - "west": {"uv": [9.25, 9.5, 9.5, 10.25], "texture": "#1"}, - "up": {"uv": [11.5, 0.25, 9.5, 0], "texture": "#1"}, - "down": {"uv": [11.5, 0.25, 9.5, 0.5], "texture": "#1"} - } - }, - { - "from": [5, 0, 5], - "to": [11, 5, 11], - "faces": { - "north": {"uv": [3, 8, 4.5, 9.25], "texture": "#1"}, - "east": {"uv": [8, 3, 9.5, 4.25], "texture": "#1"}, - "south": {"uv": [8, 4.25, 9.5, 5.5], "texture": "#1"}, - "west": {"uv": [4.5, 8, 6, 9.25], "texture": "#1"}, - "up": {"uv": [3, 9.5, 1.5, 8], "texture": "#1"}, - "down": {"uv": [9.5, 1.5, 8, 3], "texture": "#1"} - } - }, - { - "from": [7.5, 7.25, 4], - "to": [8.5, 16.25, 5], - "rotation": {"angle": 22.5, "axis": "x", "origin": [5, 8, 5]}, - "faces": { - "north": {"uv": [4.5, 9.25, 4.75, 11.25], "texture": "#1"}, - "east": {"uv": [4.75, 9.25, 5, 11.25], "texture": "#1"}, - "south": {"uv": [5, 9.25, 5.25, 11.25], "texture": "#1"}, - "west": {"uv": [5.25, 9.25, 5.5, 11.25], "texture": "#1"}, - "up": {"uv": [1.25, 10, 1, 9.75], "texture": "#1"}, - "down": {"uv": [10, 1, 9.75, 1.25], "texture": "#1"} - } - }, - { - "from": [4, 7.25, 7.5], - "to": [5, 16.25, 8.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [5, 8, 11]}, - "faces": { - "north": {"uv": [5.5, 9.25, 5.75, 11.25], "texture": "#1"}, - "east": {"uv": [5.75, 9.25, 6, 11.25], "texture": "#1"}, - "south": {"uv": [9.5, 0.5, 9.75, 2.5], "texture": "#1"}, - "west": {"uv": [2, 9.5, 2.25, 11.5], "texture": "#1"}, - "up": {"uv": [1.5, 10, 1.25, 9.75], "texture": "#1"}, - "down": {"uv": [10, 1.25, 9.75, 1.5], "texture": "#1"} - } - }, - { - "from": [7.5, 7.25, 11], - "to": [8.5, 16.25, 12], - "rotation": {"angle": -22.5, "axis": "x", "origin": [11, 8, 11]}, - "faces": { - "north": {"uv": [2.25, 9.5, 2.5, 11.5], "texture": "#1"}, - "east": {"uv": [2.5, 9.5, 2.75, 11.5], "texture": "#1"}, - "south": {"uv": [9.5, 2.5, 9.75, 4.5], "texture": "#1"}, - "west": {"uv": [2.75, 9.5, 3, 11.5], "texture": "#1"}, - "up": {"uv": [1.75, 10, 1.5, 9.75], "texture": "#1"}, - "down": {"uv": [10, 1.5, 9.75, 1.75], "texture": "#1"} - } - }, - { - "from": [11, 7.25, 7.5], - "to": [12, 16.25, 8.5], - "rotation": {"angle": 22.5, "axis": "z", "origin": [11, 8, 5]}, - "faces": { - "north": {"uv": [6, 9.5, 6.25, 11.5], "texture": "#1"}, - "east": {"uv": [6.25, 9.5, 6.5, 11.5], "texture": "#1"}, - "south": {"uv": [6.5, 9.5, 6.75, 11.5], "texture": "#1"}, - "west": {"uv": [6.75, 9.5, 7, 11.5], "texture": "#1"}, - "up": {"uv": [2, 10, 1.75, 9.75], "texture": "#1"}, - "down": {"uv": [10, 1.75, 9.75, 2], "texture": "#1"} - } - }, - { - "from": [7, 15, 7], - "to": [9, 16, 9], - "faces": { - "north": {"uv": [0, 9.75, 0.5, 10], "texture": "#1"}, - "east": {"uv": [0.5, 9.75, 1, 10], "texture": "#1"}, - "south": {"uv": [9.75, 0.5, 10.25, 0.75], "texture": "#1"}, - "west": {"uv": [9.75, 0.75, 10.25, 1], "texture": "#1"}, - "up": {"uv": [8, 9.25, 7.5, 8.75], "texture": "#1"}, - "down": {"uv": [10, 7.75, 9.5, 8.25], "texture": "#1"} - } - }, - { - "from": [11.25, 4.75, 7.5], - "to": [12.25, 7.75, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [4.75, 10, 5, 10.75], "texture": "#1"}, - "east": {"uv": [9.5, 2.75, 9.75, 3.5], "texture": "#1"}, - "south": {"uv": [5.5, 9.5, 5.75, 10.25], "texture": "#1"}, - "west": {"uv": [9.5, 1.75, 9.75, 2.5], "texture": "#1"}, - "up": {"uv": [2.25, 10.5, 2.5, 10.75], "texture": "#1"}, - "down": {"uv": [5, 9.75, 5.25, 10], "texture": "#1"} - } - }, - { - "from": [7.5, 4.75, 3.75], - "to": [8.5, 7.75, 4.75], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [9.5, 2.75, 9.75, 3.5], "texture": "#1"}, - "east": {"uv": [5.5, 9.5, 5.75, 10.25], "texture": "#1"}, - "south": {"uv": [9.5, 1.75, 9.75, 2.5], "texture": "#1"}, - "west": {"uv": [4.75, 10, 5, 10.75], "texture": "#1"}, - "up": {"uv": [2.25, 10.5, 2.5, 10.75], "rotation": 270, "texture": "#1"}, - "down": {"uv": [5, 9.75, 5.25, 10], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [3.75, 4.75, 7.5], - "to": [4.75, 7.75, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [5.5, 9.5, 5.75, 10.25], "texture": "#1"}, - "east": {"uv": [9.5, 1.75, 9.75, 2.5], "texture": "#1"}, - "south": {"uv": [4.75, 10, 5, 10.75], "texture": "#1"}, - "west": {"uv": [9.5, 2.75, 9.75, 3.5], "texture": "#1"}, - "up": {"uv": [2.25, 10.5, 2.5, 10.75], "rotation": 180, "texture": "#1"}, - "down": {"uv": [5, 9.75, 5.25, 10], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [7.5, 4.75, 11.25], - "to": [8.5, 7.75, 12.25], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [9.5, 1.75, 9.75, 2.5], "texture": "#1"}, - "east": {"uv": [4.75, 10, 5, 10.75], "texture": "#1"}, - "south": {"uv": [9.5, 2.75, 9.75, 3.5], "texture": "#1"}, - "west": {"uv": [5.5, 9.5, 5.75, 10.25], "texture": "#1"}, - "up": {"uv": [2.25, 10.5, 2.5, 10.75], "rotation": 90, "texture": "#1"}, - "down": {"uv": [5, 9.75, 5.25, 10], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [4.5, 4, 4.5], - "to": [11.5, 5, 11.5], - "faces": { - "north": {"uv": [4.75, 10, 6.5, 10.25], "texture": "#1"}, - "east": {"uv": [4.75, 10.75, 6.5, 11], "texture": "#1"}, - "south": {"uv": [4.75, 10.75, 6.5, 11], "texture": "#1"}, - "west": {"uv": [4.75, 10, 6.5, 10.25], "texture": "#1"}, - "up": {"uv": [4.5, 9.5, 6.25, 11.25], "texture": "#1"}, - "down": {"uv": [4.5, 9.5, 6.25, 11.25], "texture": "#1"} - } - }, - { - "name": "RankePot", - "from": [4, 8.5, 9.5], - "to": [12, 8.5, 14.5], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [0, 0, 2, 0], "rotation": 180, "texture": "#1"}, - "east": {"uv": [0, 0, 0, 1.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 0, 1.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 0, 2, 1.25], "texture": "#1"}, - "down": {"uv": [2, 0, 0, 1.25], "rotation": 180, "texture": "#1"} - } - }, - { - "name": "Ranke", - "from": [4, 0, 12.75], - "to": [12, 9, 12.75], - "faces": { - "north": {"uv": [2, 1.25, 0, 3.5], "texture": "#1"}, - "east": {"uv": [0, 1.25, 0, 3.5], "texture": "#1"}, - "south": {"uv": [0, 1.25, 2, 3.5], "texture": "#1"}, - "west": {"uv": [0, 1.25, 0, 3.5], "texture": "#1"}, - "up": {"uv": [0, 1.25, 2, 1.25], "texture": "#1"}, - "down": {"uv": [0, 1.25, 2, 1.25], "texture": "#1"} - } - }, - { - "name": "OverlayPot", - "from": [4, 9, 9.5], - "to": [12, 9, 14.5], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [0, 0, 2, 0], "rotation": 180, "texture": "#2"}, - "east": {"uv": [0, 0, 0, 1.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0, 0, 2, 0], "texture": "#2"}, - "west": {"uv": [0, 0, 0, 1.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0, 0, 2, 1.25], "texture": "#2"}, - "down": {"uv": [2, 0, 0, 1.25], "rotation": 180, "texture": "#2"} - } - }, - { - "name": "Overlay", - "from": [4, 0, 13.25], - "to": [12, 9, 13.25], - "faces": { - "north": {"uv": [2, 1.25, 0, 3.5], "texture": "#2"}, - "east": {"uv": [0, 1.25, 0, 3.5], "texture": "#2"}, - "south": {"uv": [0, 1.25, 2, 3.5], "texture": "#2"}, - "west": {"uv": [0, 1.25, 0, 3.5], "texture": "#2"}, - "up": {"uv": [0, 1.25, 2, 1.25], "texture": "#2"}, - "down": {"uv": [0, 1.25, 2, 1.25], "texture": "#2"} - } - }, - { - "name": "RankePot", - "from": [9.25, 6.75, 4], - "to": [14.25, 6.75, 12], - "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [6, 0, 6, 1.25], "rotation": 90, "texture": "#1"}, - "east": {"uv": [6, 0, 8, 0], "texture": "#1"}, - "south": {"uv": [6, 0, 6, 1.25], "rotation": 270, "texture": "#1"}, - "west": {"uv": [6, 0, 8, 0], "rotation": 180, "texture": "#1"}, - "up": {"uv": [6, 0, 8, 1.25], "rotation": 270, "texture": "#1"}, - "down": {"uv": [8, 0, 6, 1.25], "rotation": 270, "texture": "#1"} - } - }, - { - "name": "OverlayPot", - "from": [9.25, 7.25, 4], - "to": [14.25, 7.25, 12], - "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [2, 0, 2, 1.25], "rotation": 90, "texture": "#2"}, - "east": {"uv": [2, 0, 4, 0], "texture": "#2"}, - "south": {"uv": [2, 0, 2, 1.25], "rotation": 270, "texture": "#2"}, - "west": {"uv": [2, 0, 4, 0], "rotation": 180, "texture": "#2"}, - "up": {"uv": [2, 0, 4, 1.25], "rotation": 270, "texture": "#2"}, - "down": {"uv": [4, 0, 2, 1.25], "rotation": 270, "texture": "#2"} - } - }, - { - "name": "Ranke", - "from": [12.75, 0, 4], - "to": [12.75, 9, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [6, 1.25, 6, 3.5], "texture": "#1"}, - "east": {"uv": [6, 1.25, 8, 3.5], "texture": "#1"}, - "south": {"uv": [6, 1.25, 6, 3.5], "texture": "#1"}, - "west": {"uv": [8, 1.25, 6, 3.5], "texture": "#1"}, - "up": {"uv": [6, 1.25, 8, 1.25], "rotation": 270, "texture": "#1"}, - "down": {"uv": [6, 1.25, 8, 1.25], "rotation": 90, "texture": "#1"} - } - }, - { - "name": "Overlay", - "from": [13.25, 0, 4], - "to": [13.25, 9, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [2, 1.25, 2, 3.5], "texture": "#2"}, - "east": {"uv": [2, 1.25, 4, 3.5], "texture": "#2"}, - "south": {"uv": [2, 1.25, 2, 3.5], "texture": "#2"}, - "west": {"uv": [4, 1.25, 2, 3.5], "texture": "#2"}, - "up": {"uv": [2, 1.25, 4, 1.25], "rotation": 270, "texture": "#2"}, - "down": {"uv": [2, 1.25, 4, 1.25], "rotation": 90, "texture": "#2"} - } - }, - { - "name": "RankePot", - "from": [1.75, 6.75, 4], - "to": [6.75, 6.75, 12], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [2, 0, 2, 1.25], "rotation": 90, "texture": "#1"}, - "east": {"uv": [2, 0, 4, 0], "texture": "#1"}, - "south": {"uv": [2, 0, 2, 1.25], "rotation": 270, "texture": "#1"}, - "west": {"uv": [2, 0, 4, 0], "rotation": 180, "texture": "#1"}, - "up": {"uv": [4, 1.25, 2, 0], "rotation": 270, "texture": "#1"}, - "down": {"uv": [2, 1.25, 4, 0], "rotation": 270, "texture": "#1"} - } - }, - { - "name": "OverlayPot", - "from": [1.75, 7, 4.25], - "to": [6.75, 7, 12.25], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [4, 0, 4, 1.25], "rotation": 90, "texture": "#2"}, - "east": {"uv": [4, 0, 6, 0], "texture": "#2"}, - "south": {"uv": [4, 0, 4, 1.25], "rotation": 270, "texture": "#2"}, - "west": {"uv": [4, 0, 6, 0], "rotation": 180, "texture": "#2"}, - "up": {"uv": [6, 1.25, 4, 0], "rotation": 270, "texture": "#2"}, - "down": {"uv": [4, 1.25, 6, 0], "rotation": 270, "texture": "#2"} - } - }, - { - "name": "Ranke", - "from": [3.25, 0, 4], - "to": [3.25, 9, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [2, 1.25, 2, 3.5], "texture": "#1"}, - "east": {"uv": [4, 1.25, 2, 3.5], "texture": "#1"}, - "south": {"uv": [2, 1.25, 2, 3.5], "texture": "#1"}, - "west": {"uv": [2, 1.25, 4, 3.5], "texture": "#1"}, - "up": {"uv": [2, 1.25, 4, 1.25], "rotation": 270, "texture": "#1"}, - "down": {"uv": [2, 1.25, 4, 1.25], "rotation": 90, "texture": "#1"} - } - }, - { - "name": "Overlay", - "from": [2.75, 0, 4], - "to": [2.75, 9, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [4, 1.25, 4, 3.5], "texture": "#2"}, - "east": {"uv": [6, 1.25, 4, 3.5], "texture": "#2"}, - "south": {"uv": [4, 1.25, 4, 3.5], "texture": "#2"}, - "west": {"uv": [4, 1.25, 6, 3.5], "texture": "#2"}, - "up": {"uv": [4, 1.25, 6, 1.25], "rotation": 270, "texture": "#2"}, - "down": {"uv": [4, 1.25, 6, 1.25], "rotation": 90, "texture": "#2"} - } - }, - { - "name": "RankePot", - "from": [4, 5, 2], - "to": [12, 5, 7], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [4, 0, 6, 0], "texture": "#1"}, - "east": {"uv": [4, 0, 4, 1.25], "rotation": 270, "texture": "#1"}, - "south": {"uv": [4, 0, 6, 0], "rotation": 180, "texture": "#1"}, - "west": {"uv": [4, 0, 4, 1.25], "rotation": 90, "texture": "#1"}, - "up": {"uv": [4, 0, 6, 1.25], "rotation": 180, "texture": "#1"}, - "down": {"uv": [6, 0, 4, 1.25], "texture": "#1"} - } - }, - { - "name": "OverlayPot", - "from": [4, 5.5, 2], - "to": [12, 5.5, 7], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [6, 0, 8, 0], "texture": "#2"}, - "east": {"uv": [6, 0, 6, 1.25], "rotation": 270, "texture": "#2"}, - "south": {"uv": [6, 0, 8, 0], "rotation": 180, "texture": "#2"}, - "west": {"uv": [6, 0, 6, 1.25], "rotation": 90, "texture": "#2"}, - "up": {"uv": [6, 0, 8, 1.25], "rotation": 180, "texture": "#2"}, - "down": {"uv": [8, 0, 6, 1.25], "texture": "#2"} - } - }, - { - "name": "Ranke", - "from": [4, 0, 3.25], - "to": [12, 9, 3.25], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [4, 1.25, 6, 3.5], "texture": "#1"}, - "east": {"uv": [4, 1.25, 4, 3.5], "texture": "#1"}, - "south": {"uv": [6, 1.25, 4, 3.5], "texture": "#1"}, - "west": {"uv": [4, 1.25, 4, 3.5], "texture": "#1"}, - "up": {"uv": [4, 1.25, 6, 1.25], "rotation": 180, "texture": "#1"}, - "down": {"uv": [4, 1.25, 6, 1.25], "rotation": 180, "texture": "#1"} - } - }, - { - "name": "Overlay", - "from": [4, 0, 2.75], - "to": [12, 9, 2.75], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [6, 1.25, 8, 3.5], "texture": "#2"}, - "east": {"uv": [6, 1.25, 6, 3.5], "texture": "#2"}, - "south": {"uv": [8, 1.25, 6, 3.5], "texture": "#2"}, - "west": {"uv": [6, 1.25, 6, 3.5], "texture": "#2"}, - "up": {"uv": [6, 1.25, 8, 1.25], "rotation": 180, "texture": "#2"}, - "down": {"uv": [6, 1.25, 8, 1.25], "rotation": 180, "texture": "#2"} - } - }, - { - "from": [-1, 2, 8], - "to": [17, 11, 8], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 7, 8]}, - "faces": { - "north": {"uv": [0, 5.5, 4.5, 7.75], "texture": "#1"}, - "east": {"uv": [0, 5.5, 0, 7.75], "texture": "#1"}, - "south": {"uv": [4.5, 5.5, 0, 7.75], "texture": "#1"}, - "west": {"uv": [0, 5.5, 0, 7.75], "texture": "#1"}, - "up": {"uv": [0, 3.25, 0, 7.75], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 3.25, 0, 7.75], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [8, 3, -1], - "to": [8, 12, 17], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 7, 8]}, - "faces": { - "north": {"uv": [0, 3.25, 0, 5.5], "texture": "#1"}, - "east": {"uv": [0, 3.25, 4.5, 5.5], "texture": "#1"}, - "south": {"uv": [0, 3.25, 0, 5.5], "texture": "#1"}, - "west": {"uv": [4.5, 3.25, 0, 5.5], "texture": "#1"}, - "up": {"uv": [0, 1, 0, 5.5], "texture": "#1"}, - "down": {"uv": [0, 1, 0, 5.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [67.54, -29.2, 0.06], - "translation": [0, -2.75, -4.5], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "rotation": [67.54, -29.2, 0.06], - "translation": [0, -2.75, -4.5], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [0, 50.75, 0], - "translation": [0.75, 3.25, 0], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_lefthand": { - "rotation": [0, 50.75, 0], - "translation": [0.75, 3.25, 0], - "scale": [0.65, 0.65, 0.65] - }, - "ground": { - "translation": [0, 1.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "gui": { - "rotation": [25.75, -45, 0], - "translation": [0, 0.5, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "translation": [0, 14.25, 0] - } - }, - "groups": [ - { - "name": "pot", - "origin": [8, 8, 8], - "color": 0, - "children": [ - { - "name": "Erde", - "origin": [0, 0, 0], - "color": 0, - "children": [0] - }, - { - "name": "Topf", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4, 5] - }, - { - "name": "Seile", - "origin": [-3, 8, -3], - "color": 0, - "children": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15] - } - ] - }, - { - "name": "greens", - "origin": [10, 7.5, 3.75], - "color": 0, - "children": [ - { - "name": "1", - "origin": [0, 0, 0], - "color": 0, - "children": [16, 17, 18, 19] - }, - { - "name": "2", - "origin": [8, 4, 13], - "color": 0, - "children": [20, 21, 22, 23] - }, - { - "name": "3", - "origin": [8, 4, 13], - "color": 0, - "children": [24, 25, 26, 27] - }, - { - "name": "4", - "origin": [8, 4, 12.5], - "color": 0, - "children": [28, 29, 30, 31] - }, - { - "name": "5", - "origin": [8, 7, 8], - "color": 0, - "children": [32, 33] - } - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/hanging_pot_flat_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/hanging_pot_flat_grown.json deleted file mode 100644 index 2436ebab..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/hanging_pot_flat_grown.json +++ /dev/null @@ -1,557 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "beautify:block/pots/vine_pot_grown", - "2": "beautify:block/pots/vine_pot_overlay_grown", - "particle": "block/terracotta" - }, - "elements": [ - { - "from": [5, 6, 5], - "to": [11, 7, 11], - "faces": { - "north": {"uv": [9.5, 4.5, 11, 4.75], "texture": "#1"}, - "east": {"uv": [9.5, 4.75, 11, 5], "texture": "#1"}, - "south": {"uv": [9.5, 5, 11, 5.25], "texture": "#1"}, - "west": {"uv": [9.5, 5.25, 11, 5.5], "texture": "#1"}, - "up": {"uv": [1.5, 9.5, 0, 8], "texture": "#1"}, - "down": {"uv": [9.5, 0, 8, 1.5], "texture": "#1"} - } - }, - { - "from": [11, 5, 5], - "to": [12, 8, 11], - "faces": { - "north": {"uv": [8, 9.5, 8.25, 10.25], "texture": "#1"}, - "east": {"uv": [8, 7.75, 9.5, 8.5], "texture": "#1"}, - "south": {"uv": [8.25, 9.5, 8.5, 10.25], "texture": "#1"}, - "west": {"uv": [8, 8.5, 9.5, 9.25], "texture": "#1"}, - "up": {"uv": [7.25, 11, 7, 9.5], "texture": "#1"}, - "down": {"uv": [7.5, 9.5, 7.25, 11], "texture": "#1"} - } - }, - { - "from": [4, 5, 5], - "to": [5, 8, 11], - "faces": { - "north": {"uv": [9.5, 8.25, 9.75, 9], "texture": "#1"}, - "east": {"uv": [6, 8.75, 7.5, 9.5], "texture": "#1"}, - "south": {"uv": [8.5, 9.5, 8.75, 10.25], "texture": "#1"}, - "west": {"uv": [3, 9.25, 4.5, 10], "texture": "#1"}, - "up": {"uv": [7.75, 11, 7.5, 9.5], "texture": "#1"}, - "down": {"uv": [8, 9.5, 7.75, 11], "texture": "#1"} - } - }, - { - "from": [4, 5, 4], - "to": [12, 8, 5], - "faces": { - "north": {"uv": [8, 5.5, 10, 6.25], "texture": "#1"}, - "east": {"uv": [8.75, 9.5, 9, 10.25], "texture": "#1"}, - "south": {"uv": [6, 8, 8, 8.75], "texture": "#1"}, - "west": {"uv": [9, 9.5, 9.25, 10.25], "texture": "#1"}, - "up": {"uv": [9.5, 9.5, 7.5, 9.25], "texture": "#1"}, - "down": {"uv": [2, 9.5, 0, 9.75], "texture": "#1"} - } - }, - { - "from": [4, 5, 11], - "to": [12, 8, 12], - "faces": { - "north": {"uv": [8, 6.25, 10, 7], "texture": "#1"}, - "east": {"uv": [9.5, 9, 9.75, 9.75], "texture": "#1"}, - "south": {"uv": [8, 7, 10, 7.75], "texture": "#1"}, - "west": {"uv": [9.25, 9.5, 9.5, 10.25], "texture": "#1"}, - "up": {"uv": [11.5, 0.25, 9.5, 0], "texture": "#1"}, - "down": {"uv": [11.5, 0.25, 9.5, 0.5], "texture": "#1"} - } - }, - { - "from": [5, 0, 5], - "to": [11, 5, 11], - "faces": { - "north": {"uv": [3, 8, 4.5, 9.25], "texture": "#1"}, - "east": {"uv": [8, 3, 9.5, 4.25], "texture": "#1"}, - "south": {"uv": [8, 4.25, 9.5, 5.5], "texture": "#1"}, - "west": {"uv": [4.5, 8, 6, 9.25], "texture": "#1"}, - "up": {"uv": [3, 9.5, 1.5, 8], "texture": "#1"}, - "down": {"uv": [9.5, 1.5, 8, 3], "texture": "#1"} - } - }, - { - "from": [7.5, 7.25, 4], - "to": [8.5, 16.25, 5], - "rotation": {"angle": 22.5, "axis": "x", "origin": [5, 8, 5]}, - "faces": { - "north": {"uv": [4.5, 9.25, 4.75, 11.25], "texture": "#1"}, - "east": {"uv": [4.75, 9.25, 5, 11.25], "texture": "#1"}, - "south": {"uv": [5, 9.25, 5.25, 11.25], "texture": "#1"}, - "west": {"uv": [5.25, 9.25, 5.5, 11.25], "texture": "#1"}, - "up": {"uv": [1.25, 10, 1, 9.75], "texture": "#1"}, - "down": {"uv": [10, 1, 9.75, 1.25], "texture": "#1"} - } - }, - { - "from": [4, 7.25, 7.5], - "to": [5, 16.25, 8.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [5, 8, 11]}, - "faces": { - "north": {"uv": [5.5, 9.25, 5.75, 11.25], "texture": "#1"}, - "east": {"uv": [5.75, 9.25, 6, 11.25], "texture": "#1"}, - "south": {"uv": [9.5, 0.5, 9.75, 2.5], "texture": "#1"}, - "west": {"uv": [2, 9.5, 2.25, 11.5], "texture": "#1"}, - "up": {"uv": [1.5, 10, 1.25, 9.75], "texture": "#1"}, - "down": {"uv": [10, 1.25, 9.75, 1.5], "texture": "#1"} - } - }, - { - "from": [7.5, 7.25, 11], - "to": [8.5, 16.25, 12], - "rotation": {"angle": -22.5, "axis": "x", "origin": [11, 8, 11]}, - "faces": { - "north": {"uv": [2.25, 9.5, 2.5, 11.5], "texture": "#1"}, - "east": {"uv": [2.5, 9.5, 2.75, 11.5], "texture": "#1"}, - "south": {"uv": [9.5, 2.5, 9.75, 4.5], "texture": "#1"}, - "west": {"uv": [2.75, 9.5, 3, 11.5], "texture": "#1"}, - "up": {"uv": [1.75, 10, 1.5, 9.75], "texture": "#1"}, - "down": {"uv": [10, 1.5, 9.75, 1.75], "texture": "#1"} - } - }, - { - "from": [11, 7.25, 7.5], - "to": [12, 16.25, 8.5], - "rotation": {"angle": 22.5, "axis": "z", "origin": [11, 8, 5]}, - "faces": { - "north": {"uv": [6, 9.5, 6.25, 11.5], "texture": "#1"}, - "east": {"uv": [6.25, 9.5, 6.5, 11.5], "texture": "#1"}, - "south": {"uv": [6.5, 9.5, 6.75, 11.5], "texture": "#1"}, - "west": {"uv": [6.75, 9.5, 7, 11.5], "texture": "#1"}, - "up": {"uv": [2, 10, 1.75, 9.75], "texture": "#1"}, - "down": {"uv": [10, 1.75, 9.75, 2], "texture": "#1"} - } - }, - { - "from": [7, 15, 7], - "to": [9, 16, 9], - "faces": { - "north": {"uv": [0, 9.75, 0.5, 10], "texture": "#1"}, - "east": {"uv": [0.5, 9.75, 1, 10], "texture": "#1"}, - "south": {"uv": [9.75, 0.5, 10.25, 0.75], "texture": "#1"}, - "west": {"uv": [9.75, 0.75, 10.25, 1], "texture": "#1"}, - "up": {"uv": [8, 9.25, 7.5, 8.75], "texture": "#1"}, - "down": {"uv": [10, 7.75, 9.5, 8.25], "texture": "#1"} - } - }, - { - "from": [11.25, 4.75, 7.5], - "to": [12.25, 7.75, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [4.75, 10, 5, 10.75], "texture": "#1"}, - "east": {"uv": [9.5, 2.75, 9.75, 3.5], "texture": "#1"}, - "south": {"uv": [5.5, 9.5, 5.75, 10.25], "texture": "#1"}, - "west": {"uv": [9.5, 1.75, 9.75, 2.5], "texture": "#1"}, - "up": {"uv": [2.25, 10.5, 2.5, 10.75], "texture": "#1"}, - "down": {"uv": [5, 9.75, 5.25, 10], "texture": "#1"} - } - }, - { - "from": [7.5, 4.75, 3.75], - "to": [8.5, 7.75, 4.75], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [9.5, 2.75, 9.75, 3.5], "texture": "#1"}, - "east": {"uv": [5.5, 9.5, 5.75, 10.25], "texture": "#1"}, - "south": {"uv": [9.5, 1.75, 9.75, 2.5], "texture": "#1"}, - "west": {"uv": [4.75, 10, 5, 10.75], "texture": "#1"}, - "up": {"uv": [2.25, 10.5, 2.5, 10.75], "rotation": 270, "texture": "#1"}, - "down": {"uv": [5, 9.75, 5.25, 10], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [3.75, 4.75, 7.5], - "to": [4.75, 7.75, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [5.5, 9.5, 5.75, 10.25], "texture": "#1"}, - "east": {"uv": [9.5, 1.75, 9.75, 2.5], "texture": "#1"}, - "south": {"uv": [4.75, 10, 5, 10.75], "texture": "#1"}, - "west": {"uv": [9.5, 2.75, 9.75, 3.5], "texture": "#1"}, - "up": {"uv": [2.25, 10.5, 2.5, 10.75], "rotation": 180, "texture": "#1"}, - "down": {"uv": [5, 9.75, 5.25, 10], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [7.5, 4.75, 11.25], - "to": [8.5, 7.75, 12.25], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [9.5, 1.75, 9.75, 2.5], "texture": "#1"}, - "east": {"uv": [4.75, 10, 5, 10.75], "texture": "#1"}, - "south": {"uv": [9.5, 2.75, 9.75, 3.5], "texture": "#1"}, - "west": {"uv": [5.5, 9.5, 5.75, 10.25], "texture": "#1"}, - "up": {"uv": [2.25, 10.5, 2.5, 10.75], "rotation": 90, "texture": "#1"}, - "down": {"uv": [5, 9.75, 5.25, 10], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [4.5, 4, 4.5], - "to": [11.5, 5, 11.5], - "faces": { - "north": {"uv": [4.75, 10, 6.5, 10.25], "texture": "#1"}, - "east": {"uv": [4.75, 10.75, 6.5, 11], "texture": "#1"}, - "south": {"uv": [4.75, 10.75, 6.5, 11], "texture": "#1"}, - "west": {"uv": [4.75, 10, 6.5, 10.25], "texture": "#1"}, - "up": {"uv": [4.5, 9.5, 6.25, 11.25], "texture": "#1"}, - "down": {"uv": [4.5, 9.5, 6.25, 11.25], "texture": "#1"} - } - }, - { - "name": "RankePot", - "from": [4, 8.5, 9.5], - "to": [12, 8.5, 14.5], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [0, 0, 2, 0], "rotation": 180, "texture": "#1"}, - "east": {"uv": [0, 0, 0, 1.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 0, 1.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 0, 2, 1.25], "texture": "#1"}, - "down": {"uv": [2, 0, 0, 1.25], "rotation": 180, "texture": "#1"} - } - }, - { - "name": "Ranke", - "from": [4, -13, 12.75], - "to": [12, 9, 12.75], - "faces": { - "north": {"uv": [2, 1.25, 0, 6.75], "texture": "#1"}, - "east": {"uv": [0, 1.25, 0, 6.75], "texture": "#1"}, - "south": {"uv": [0, 1.25, 2, 6.75], "texture": "#1"}, - "west": {"uv": [0, 1.25, 0, 6.75], "texture": "#1"}, - "up": {"uv": [0, 1.25, 2, 1.25], "texture": "#1"}, - "down": {"uv": [0, 1.25, 2, 1.25], "texture": "#1"} - } - }, - { - "name": "OverlayPot", - "from": [4, 9, 9.5], - "to": [12, 9, 14.5], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [0, 0, 2, 0], "rotation": 180, "texture": "#2"}, - "east": {"uv": [0, 0, 0, 1.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0, 0, 2, 0], "texture": "#2"}, - "west": {"uv": [0, 0, 0, 1.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0, 0, 2, 1.25], "texture": "#2"}, - "down": {"uv": [2, 0, 0, 1.25], "rotation": 180, "texture": "#2"} - } - }, - { - "name": "Overlay", - "from": [4, -13, 13.25], - "to": [12, 9, 13.25], - "faces": { - "north": {"uv": [2, 1.25, 0, 6.75], "texture": "#2"}, - "east": {"uv": [0, 1.25, 0, 6.75], "texture": "#2"}, - "south": {"uv": [0, 1.25, 2, 6.75], "texture": "#2"}, - "west": {"uv": [0, 1.25, 0, 6.75], "texture": "#2"}, - "up": {"uv": [0, 1.25, 2, 1.25], "texture": "#2"}, - "down": {"uv": [0, 1.25, 2, 1.25], "texture": "#2"} - } - }, - { - "name": "RankePot", - "from": [9.25, 6.75, 4], - "to": [14.25, 6.75, 12], - "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [6, 0, 6, 1.25], "rotation": 90, "texture": "#1"}, - "east": {"uv": [6, 0, 8, 0], "texture": "#1"}, - "south": {"uv": [6, 0, 6, 1.25], "rotation": 270, "texture": "#1"}, - "west": {"uv": [6, 0, 8, 0], "rotation": 180, "texture": "#1"}, - "up": {"uv": [6, 0, 8, 1.25], "rotation": 270, "texture": "#1"}, - "down": {"uv": [8, 0, 6, 1.25], "rotation": 270, "texture": "#1"} - } - }, - { - "name": "OverlayPot", - "from": [9.25, 7.25, 4], - "to": [14.25, 7.25, 12], - "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [2, 0, 2, 1.25], "rotation": 90, "texture": "#2"}, - "east": {"uv": [2, 0, 4, 0], "texture": "#2"}, - "south": {"uv": [2, 0, 2, 1.25], "rotation": 270, "texture": "#2"}, - "west": {"uv": [2, 0, 4, 0], "rotation": 180, "texture": "#2"}, - "up": {"uv": [2, 0, 4, 1.25], "rotation": 270, "texture": "#2"}, - "down": {"uv": [4, 0, 2, 1.25], "rotation": 270, "texture": "#2"} - } - }, - { - "name": "Ranke", - "from": [12.75, -13, 4], - "to": [12.75, 9, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [6, 1.25, 6, 6.75], "texture": "#1"}, - "east": {"uv": [6, 1.25, 8, 6.75], "texture": "#1"}, - "south": {"uv": [6, 1.25, 6, 6.75], "texture": "#1"}, - "west": {"uv": [8, 1.25, 6, 6.75], "texture": "#1"}, - "up": {"uv": [6, 1.25, 8, 1.25], "rotation": 270, "texture": "#1"}, - "down": {"uv": [6, 1.25, 8, 1.25], "rotation": 90, "texture": "#1"} - } - }, - { - "name": "Overlay", - "from": [13.25, -13, 4], - "to": [13.25, 9, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [2, 1.25, 2, 6.75], "texture": "#2"}, - "east": {"uv": [2, 1.25, 4, 6.75], "texture": "#2"}, - "south": {"uv": [2, 1.25, 2, 6.75], "texture": "#2"}, - "west": {"uv": [4, 1.25, 2, 6.75], "texture": "#2"}, - "up": {"uv": [2, 1.25, 4, 1.25], "rotation": 270, "texture": "#2"}, - "down": {"uv": [2, 1.25, 4, 1.25], "rotation": 90, "texture": "#2"} - } - }, - { - "name": "RankePot", - "from": [1.75, 6.75, 4], - "to": [6.75, 6.75, 12], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [2, 0, 2, 1.25], "rotation": 90, "texture": "#1"}, - "east": {"uv": [2, 0, 4, 0], "texture": "#1"}, - "south": {"uv": [2, 0, 2, 1.25], "rotation": 270, "texture": "#1"}, - "west": {"uv": [2, 0, 4, 0], "rotation": 180, "texture": "#1"}, - "up": {"uv": [4, 1.25, 2, 0], "rotation": 270, "texture": "#1"}, - "down": {"uv": [2, 1.25, 4, 0], "rotation": 270, "texture": "#1"} - } - }, - { - "name": "OverlayPot", - "from": [1.75, 7, 4.25], - "to": [6.75, 7, 12.25], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [4, 0, 4, 1.25], "rotation": 90, "texture": "#2"}, - "east": {"uv": [4, 0, 6, 0], "texture": "#2"}, - "south": {"uv": [4, 0, 4, 1.25], "rotation": 270, "texture": "#2"}, - "west": {"uv": [4, 0, 6, 0], "rotation": 180, "texture": "#2"}, - "up": {"uv": [6, 1.25, 4, 0], "rotation": 270, "texture": "#2"}, - "down": {"uv": [4, 1.25, 6, 0], "rotation": 270, "texture": "#2"} - } - }, - { - "name": "Ranke", - "from": [3.25, -13, 4], - "to": [3.25, 9, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [2, 1.25, 2, 6.75], "texture": "#1"}, - "east": {"uv": [4, 1.25, 2, 6.75], "texture": "#1"}, - "south": {"uv": [2, 1.25, 2, 6.75], "texture": "#1"}, - "west": {"uv": [2, 1.25, 4, 6.75], "texture": "#1"}, - "up": {"uv": [2, 1.25, 4, 1.25], "rotation": 270, "texture": "#1"}, - "down": {"uv": [2, 1.25, 4, 1.25], "rotation": 90, "texture": "#1"} - } - }, - { - "name": "Overlay", - "from": [2.75, -13, 4], - "to": [2.75, 9, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [4, 1.25, 4, 6.75], "texture": "#2"}, - "east": {"uv": [6, 1.25, 4, 6.75], "texture": "#2"}, - "south": {"uv": [4, 1.25, 4, 6.75], "texture": "#2"}, - "west": {"uv": [4, 1.25, 6, 6.75], "texture": "#2"}, - "up": {"uv": [4, 1.25, 6, 1.25], "rotation": 270, "texture": "#2"}, - "down": {"uv": [4, 1.25, 6, 1.25], "rotation": 90, "texture": "#2"} - } - }, - { - "name": "RankePot", - "from": [4, 5, 2], - "to": [12, 5, 7], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [4, 0, 6, 0], "texture": "#1"}, - "east": {"uv": [4, 0, 4, 1.25], "rotation": 270, "texture": "#1"}, - "south": {"uv": [4, 0, 6, 0], "rotation": 180, "texture": "#1"}, - "west": {"uv": [4, 0, 4, 1.25], "rotation": 90, "texture": "#1"}, - "up": {"uv": [4, 0, 6, 1.25], "rotation": 180, "texture": "#1"}, - "down": {"uv": [6, 0, 4, 1.25], "texture": "#1"} - } - }, - { - "name": "OverlayPot", - "from": [4, 5.5, 2], - "to": [12, 5.5, 7], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [6, 0, 8, 0], "texture": "#2"}, - "east": {"uv": [6, 0, 6, 1.25], "rotation": 270, "texture": "#2"}, - "south": {"uv": [6, 0, 8, 0], "rotation": 180, "texture": "#2"}, - "west": {"uv": [6, 0, 6, 1.25], "rotation": 90, "texture": "#2"}, - "up": {"uv": [6, 0, 8, 1.25], "rotation": 180, "texture": "#2"}, - "down": {"uv": [8, 0, 6, 1.25], "texture": "#2"} - } - }, - { - "name": "Ranke", - "from": [4, -13, 3.25], - "to": [12, 9, 3.25], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [4, 1.25, 6, 6.75], "texture": "#1"}, - "east": {"uv": [4, 1.25, 4, 6.75], "texture": "#1"}, - "south": {"uv": [6, 1.25, 4, 6.75], "texture": "#1"}, - "west": {"uv": [4, 1.25, 4, 6.75], "texture": "#1"}, - "up": {"uv": [4, 1.25, 6, 1.25], "rotation": 180, "texture": "#1"}, - "down": {"uv": [4, 1.25, 6, 1.25], "rotation": 180, "texture": "#1"} - } - }, - { - "name": "Overlay", - "from": [4, -13, 2.75], - "to": [12, 9, 2.75], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [6, 1.25, 8, 6.75], "texture": "#2"}, - "east": {"uv": [6, 1.25, 6, 6.75], "texture": "#2"}, - "south": {"uv": [8, 1.25, 6, 6.75], "texture": "#2"}, - "west": {"uv": [6, 1.25, 6, 6.75], "texture": "#2"}, - "up": {"uv": [6, 1.25, 8, 1.25], "rotation": 180, "texture": "#2"}, - "down": {"uv": [6, 1.25, 8, 1.25], "rotation": 180, "texture": "#2"} - } - }, - { - "from": [-1, 3, 8], - "to": [17, 11, 8], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 7, 8]}, - "faces": { - "north": {"uv": [4.5, 11.75, 0, 13.75], "texture": "#1"}, - "east": {"uv": [0, 11.75, 0, 13.75], "texture": "#1"}, - "south": {"uv": [0, 11.75, 4.5, 13.75], "texture": "#1"}, - "west": {"uv": [0, 11.75, 0, 13.75], "texture": "#1"}, - "up": {"uv": [0, 9.5, 0, 14], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 9.5, 0, 14], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [8, 2, -1], - "to": [8, 11, 17], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 7, 8]}, - "faces": { - "north": {"uv": [0, 13.75, 0, 16], "texture": "#1"}, - "east": {"uv": [0, 13.75, 4.5, 16], "texture": "#1"}, - "south": {"uv": [0, 13.75, 0, 16], "texture": "#1"}, - "west": {"uv": [4.5, 13.75, 0, 16], "texture": "#1"}, - "up": {"uv": [0, 11.5, 0, 16], "texture": "#1"}, - "down": {"uv": [0, 11.5, 0, 16], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [67.54, -29.2, 0.06], - "translation": [0, -2.75, -4.5], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "rotation": [67.54, -29.2, 0.06], - "translation": [0, -2.75, -4.5], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [0, 50.75, 0], - "translation": [0.75, 3.25, 0], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_lefthand": { - "rotation": [0, 50.75, 0], - "translation": [0.75, 3.25, 0], - "scale": [0.65, 0.65, 0.65] - }, - "ground": { - "translation": [0, 1.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "gui": { - "rotation": [25.75, -45, 0], - "translation": [0, 0.5, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "translation": [0, 14.25, 0] - } - }, - "groups": [ - { - "name": "pot", - "origin": [8, 8, 8], - "color": 0, - "children": [ - { - "name": "Erde", - "origin": [0, 0, 0], - "color": 0, - "children": [0] - }, - { - "name": "Topf", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4, 5] - }, - { - "name": "Seile", - "origin": [-3, 8, -3], - "color": 0, - "children": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15] - } - ] - }, - { - "name": "greens", - "origin": [10, 7.5, 3.75], - "color": 0, - "children": [ - { - "name": "1", - "origin": [0, 0, 0], - "color": 0, - "children": [16, 17, 18, 19] - }, - { - "name": "2", - "origin": [8, 4, 13], - "color": 0, - "children": [20, 21, 22, 23] - }, - { - "name": "3", - "origin": [8, 4, 13], - "color": 0, - "children": [24, 25, 26, 27] - }, - { - "name": "4", - "origin": [8, 4, 12.5], - "color": 0, - "children": [28, 29, 30, 31] - }, - { - "name": "5", - "origin": [8, 7, 8], - "color": 0, - "children": [32, 33] - } - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/hanging_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/hanging_pot_grown.json deleted file mode 100644 index c8fc27c9..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/hanging_pot_grown.json +++ /dev/null @@ -1,303 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "0": "beautify:block/pots/grass_pot_grown", - "particle": "block/terracotta" - }, - "elements": [ - { - "from": [5, 5, 5], - "to": [11, 6, 11], - "faces": { - "north": {"uv": [9.5, 4.5, 11, 4.75], "texture": "#0"}, - "east": {"uv": [9.5, 4.75, 11, 5], "texture": "#0"}, - "south": {"uv": [9.5, 5, 11, 5.25], "texture": "#0"}, - "west": {"uv": [9.5, 5.25, 11, 5.5], "texture": "#0"}, - "up": {"uv": [1.5, 9.5, 0, 8], "texture": "#0"}, - "down": {"uv": [9.5, 0, 8, 1.5], "texture": "#0"} - } - }, - { - "from": [11, 5, 5], - "to": [12, 8, 11], - "faces": { - "north": {"uv": [8, 9.5, 8.25, 10.25], "texture": "#0"}, - "east": {"uv": [8, 7.75, 9.5, 8.5], "texture": "#0"}, - "south": {"uv": [8.25, 9.5, 8.5, 10.25], "texture": "#0"}, - "west": {"uv": [8, 8.5, 9.5, 9.25], "texture": "#0"}, - "up": {"uv": [7.25, 11, 7, 9.5], "texture": "#0"}, - "down": {"uv": [7.5, 9.5, 7.25, 11], "texture": "#0"} - } - }, - { - "from": [4, 5, 5], - "to": [5, 8, 11], - "faces": { - "north": {"uv": [9.5, 8.25, 9.75, 9], "texture": "#0"}, - "east": {"uv": [6, 8.75, 7.5, 9.5], "texture": "#0"}, - "south": {"uv": [8.5, 9.5, 8.75, 10.25], "texture": "#0"}, - "west": {"uv": [3, 9.25, 4.5, 10], "texture": "#0"}, - "up": {"uv": [7.75, 11, 7.5, 9.5], "texture": "#0"}, - "down": {"uv": [8, 9.5, 7.75, 11], "texture": "#0"} - } - }, - { - "from": [4, 5, 4], - "to": [12, 8, 5], - "faces": { - "north": {"uv": [8, 5.5, 10, 6.25], "texture": "#0"}, - "east": {"uv": [8.75, 9.5, 9, 10.25], "texture": "#0"}, - "south": {"uv": [6, 8, 8, 8.75], "texture": "#0"}, - "west": {"uv": [9, 9.5, 9.25, 10.25], "texture": "#0"}, - "up": {"uv": [9.5, 9.5, 7.5, 9.25], "texture": "#0"}, - "down": {"uv": [2, 9.5, 0, 9.75], "texture": "#0"} - } - }, - { - "from": [4, 5, 11], - "to": [12, 8, 12], - "faces": { - "north": {"uv": [8, 6.25, 10, 7], "texture": "#0"}, - "east": {"uv": [9.5, 9, 9.75, 9.75], "texture": "#0"}, - "south": {"uv": [8, 7, 10, 7.75], "texture": "#0"}, - "west": {"uv": [9.25, 9.5, 9.5, 10.25], "texture": "#0"}, - "up": {"uv": [11.5, 0.25, 9.5, 0], "texture": "#0"}, - "down": {"uv": [11.5, 0.25, 9.5, 0.5], "texture": "#0"} - } - }, - { - "from": [5, 0, 5], - "to": [11, 5, 11], - "faces": { - "north": {"uv": [3, 8, 4.5, 9.25], "texture": "#0"}, - "east": {"uv": [8, 3, 9.5, 4.25], "texture": "#0"}, - "south": {"uv": [8, 4.25, 9.5, 5.5], "texture": "#0"}, - "west": {"uv": [4.5, 8, 6, 9.25], "texture": "#0"}, - "up": {"uv": [3, 9.5, 1.5, 8], "texture": "#0"}, - "down": {"uv": [9.5, 1.5, 8, 3], "texture": "#0"} - } - }, - { - "from": [7.5, 7.25, 4], - "to": [8.5, 16.25, 5], - "rotation": {"angle": 22.5, "axis": "x", "origin": [5, 8, 5]}, - "faces": { - "north": {"uv": [4.5, 9.25, 4.75, 11.25], "texture": "#0"}, - "east": {"uv": [4.75, 9.25, 5, 11.25], "texture": "#0"}, - "south": {"uv": [5, 9.25, 5.25, 11.25], "texture": "#0"}, - "west": {"uv": [5.25, 9.25, 5.5, 11.25], "texture": "#0"}, - "up": {"uv": [1.25, 10, 1, 9.75], "texture": "#0"}, - "down": {"uv": [10, 1, 9.75, 1.25], "texture": "#0"} - } - }, - { - "from": [4, 7.25, 7.5], - "to": [5, 16.25, 8.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [5, 8, 11]}, - "faces": { - "north": {"uv": [5.5, 9.25, 5.75, 11.25], "texture": "#0"}, - "east": {"uv": [5.75, 9.25, 6, 11.25], "texture": "#0"}, - "south": {"uv": [9.5, 0.5, 9.75, 2.5], "texture": "#0"}, - "west": {"uv": [2, 9.5, 2.25, 11.5], "texture": "#0"}, - "up": {"uv": [1.5, 10, 1.25, 9.75], "texture": "#0"}, - "down": {"uv": [10, 1.25, 9.75, 1.5], "texture": "#0"} - } - }, - { - "from": [7.5, 7.25, 11], - "to": [8.5, 16.25, 12], - "rotation": {"angle": -22.5, "axis": "x", "origin": [11, 8, 11]}, - "faces": { - "north": {"uv": [2.25, 9.5, 2.5, 11.5], "texture": "#0"}, - "east": {"uv": [2.5, 9.5, 2.75, 11.5], "texture": "#0"}, - "south": {"uv": [9.5, 2.5, 9.75, 4.5], "texture": "#0"}, - "west": {"uv": [2.75, 9.5, 3, 11.5], "texture": "#0"}, - "up": {"uv": [1.75, 10, 1.5, 9.75], "texture": "#0"}, - "down": {"uv": [10, 1.5, 9.75, 1.75], "texture": "#0"} - } - }, - { - "from": [11, 7.25, 7.5], - "to": [12, 16.25, 8.5], - "rotation": {"angle": 22.5, "axis": "z", "origin": [11, 8, 5]}, - "faces": { - "north": {"uv": [6, 9.5, 6.25, 11.5], "texture": "#0"}, - "east": {"uv": [6.25, 9.5, 6.5, 11.5], "texture": "#0"}, - "south": {"uv": [6.5, 9.5, 6.75, 11.5], "texture": "#0"}, - "west": {"uv": [6.75, 9.5, 7, 11.5], "texture": "#0"}, - "up": {"uv": [2, 10, 1.75, 9.75], "texture": "#0"}, - "down": {"uv": [10, 1.75, 9.75, 2], "texture": "#0"} - } - }, - { - "from": [7, 15, 7], - "to": [9, 16, 9], - "faces": { - "north": {"uv": [0, 9.75, 0.5, 10], "texture": "#0"}, - "east": {"uv": [0.5, 9.75, 1, 10], "texture": "#0"}, - "south": {"uv": [9.75, 0.5, 10.25, 0.75], "texture": "#0"}, - "west": {"uv": [9.75, 0.75, 10.25, 1], "texture": "#0"}, - "up": {"uv": [8, 9.25, 7.5, 8.75], "texture": "#0"}, - "down": {"uv": [10, 7.75, 9.5, 8.25], "texture": "#0"} - } - }, - { - "from": [11.25, 4.75, 7.5], - "to": [12.25, 7.75, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [4.75, 10, 5, 10.75], "texture": "#0"}, - "east": {"uv": [9.5, 2.75, 9.75, 3.5], "texture": "#0"}, - "south": {"uv": [5.5, 9.5, 5.75, 10.25], "texture": "#0"}, - "west": {"uv": [9.5, 1.75, 9.75, 2.5], "texture": "#0"}, - "up": {"uv": [2.25, 10.5, 2.5, 10.75], "texture": "#0"}, - "down": {"uv": [5, 9.75, 5.25, 10], "texture": "#0"} - } - }, - { - "from": [7.5, 4.75, 3.75], - "to": [8.5, 7.75, 4.75], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [9.5, 2.75, 9.75, 3.5], "texture": "#0"}, - "east": {"uv": [5.5, 9.5, 5.75, 10.25], "texture": "#0"}, - "south": {"uv": [9.5, 1.75, 9.75, 2.5], "texture": "#0"}, - "west": {"uv": [4.75, 10, 5, 10.75], "texture": "#0"}, - "up": {"uv": [2.25, 10.5, 2.5, 10.75], "rotation": 270, "texture": "#0"}, - "down": {"uv": [5, 9.75, 5.25, 10], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [3.75, 4.75, 7.5], - "to": [4.75, 7.75, 8.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [5.5, 9.5, 5.75, 10.25], "texture": "#0"}, - "east": {"uv": [9.5, 1.75, 9.75, 2.5], "texture": "#0"}, - "south": {"uv": [4.75, 10, 5, 10.75], "texture": "#0"}, - "west": {"uv": [9.5, 2.75, 9.75, 3.5], "texture": "#0"}, - "up": {"uv": [2.25, 10.5, 2.5, 10.75], "rotation": 180, "texture": "#0"}, - "down": {"uv": [5, 9.75, 5.25, 10], "rotation": 180, "texture": "#0"} - } - }, - { - "from": [7.5, 4.75, 11.25], - "to": [8.5, 7.75, 12.25], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [9.5, 1.75, 9.75, 2.5], "texture": "#0"}, - "east": {"uv": [4.75, 10, 5, 10.75], "texture": "#0"}, - "south": {"uv": [9.5, 2.75, 9.75, 3.5], "texture": "#0"}, - "west": {"uv": [5.5, 9.5, 5.75, 10.25], "texture": "#0"}, - "up": {"uv": [2.25, 10.5, 2.5, 10.75], "rotation": 90, "texture": "#0"}, - "down": {"uv": [5, 9.75, 5.25, 10], "rotation": 270, "texture": "#0"} - } - }, - { - "from": [4.5, 4, 4.5], - "to": [11.5, 5, 11.5], - "faces": { - "north": {"uv": [4.75, 10, 6.5, 10.25], "texture": "#0"}, - "east": {"uv": [4.75, 10.75, 6.5, 11], "texture": "#0"}, - "south": {"uv": [4.75, 10.75, 6.5, 11], "texture": "#0"}, - "west": {"uv": [4.75, 10, 6.5, 10.25], "texture": "#0"}, - "up": {"uv": [4.5, 9.5, 6.25, 11.25], "texture": "#0"}, - "down": {"uv": [4.5, 9.5, 6.25, 11.25], "texture": "#0"} - } - }, - { - "from": [0, -16, 8], - "to": [16, 16, 8], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [4, 0, 8, 8], "texture": "#0"}, - "east": {"uv": [0, 0, 0, 8], "texture": "#0"}, - "south": {"uv": [8, 0, 4, 8], "texture": "#0"}, - "west": {"uv": [0, 0, 0, 8], "texture": "#0"}, - "up": {"uv": [0, 4, 0, 0], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 0, 4], "rotation": 270, "texture": "#0"} - } - }, - { - "from": [0, -16, 8], - "to": [16, 16, 8], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 4, 8], "texture": "#0"}, - "east": {"uv": [0, 0, 0, 8], "texture": "#0"}, - "south": {"uv": [4, 0, 0, 8], "texture": "#0"}, - "west": {"uv": [0, 0, 0, 8], "texture": "#0"}, - "up": {"uv": [0, 4, 0, 0], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 0, 4], "rotation": 270, "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [67.54, -29.2, 0.06], - "translation": [0, -2.75, -4.5], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "rotation": [67.54, -29.2, 0.06], - "translation": [0, -2.75, -4.5], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [0, 50.75, 0], - "translation": [0.75, 3.25, 0], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_lefthand": { - "rotation": [0, 50.75, 0], - "translation": [0.75, 3.25, 0], - "scale": [0.65, 0.65, 0.65] - }, - "ground": { - "translation": [0, 1.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "gui": { - "rotation": [25.75, -45, 0], - "translation": [0, 0.5, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "translation": [0, 14.25, 0] - } - }, - "groups": [ - { - "name": "test", - "origin": [8, 8, 8], - "color": 0, - "children": [ - { - "name": "Erde", - "origin": [0, 0, 0], - "color": 0, - "children": [0] - }, - { - "name": "Topf", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4, 5] - }, - { - "name": "Seile", - "origin": [-3, 8, -3], - "color": 0, - "children": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15] - }, - { - "name": "Rose", - "origin": [0, 0, 0], - "color": 0, - "children": [16, 17] - } - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/standing_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/standing_pot.json deleted file mode 100644 index 0212208c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/standing_pot.json +++ /dev/null @@ -1,154 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "0": "beautify:block/hanging_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout", - "elements": [ - { - "from": [5, 5, 5], - "to": [11, 6, 11], - "faces": { - "north": {"uv": [9.5, 4.5, 11, 4.75], "texture": "#0"}, - "east": {"uv": [9.5, 4.75, 11, 5], "texture": "#0"}, - "south": {"uv": [9.5, 5, 11, 5.25], "texture": "#0"}, - "west": {"uv": [9.5, 5.25, 11, 5.5], "texture": "#0"}, - "up": {"uv": [1.5, 9.5, 0, 8], "texture": "#0"}, - "down": {"uv": [9.5, 0, 8, 1.5], "texture": "#0"} - } - }, - { - "from": [11, 5, 5], - "to": [12, 8, 11], - "faces": { - "north": {"uv": [8, 9.5, 8.25, 10.25], "texture": "#0"}, - "east": {"uv": [8, 7.75, 9.5, 8.5], "texture": "#0"}, - "south": {"uv": [8.25, 9.5, 8.5, 10.25], "texture": "#0"}, - "west": {"uv": [8, 8.5, 9.5, 9.25], "texture": "#0"}, - "up": {"uv": [7.25, 11, 7, 9.5], "texture": "#0"}, - "down": {"uv": [7.5, 9.5, 7.25, 11], "texture": "#0"} - } - }, - { - "from": [4, 5, 5], - "to": [5, 8, 11], - "faces": { - "north": {"uv": [9.5, 8.25, 9.75, 9], "texture": "#0"}, - "east": {"uv": [6, 8.75, 7.5, 9.5], "texture": "#0"}, - "south": {"uv": [8.5, 9.5, 8.75, 10.25], "texture": "#0"}, - "west": {"uv": [3, 9.25, 4.5, 10], "texture": "#0"}, - "up": {"uv": [7.75, 11, 7.5, 9.5], "texture": "#0"}, - "down": {"uv": [8, 9.5, 7.75, 11], "texture": "#0"} - } - }, - { - "from": [4, 5, 4], - "to": [12, 8, 5], - "faces": { - "north": {"uv": [8, 5.5, 10, 6.25], "texture": "#0"}, - "east": {"uv": [8.75, 9.5, 9, 10.25], "texture": "#0"}, - "south": {"uv": [6, 8, 8, 8.75], "texture": "#0"}, - "west": {"uv": [9, 9.5, 9.25, 10.25], "texture": "#0"}, - "up": {"uv": [9.5, 9.5, 7.5, 9.25], "texture": "#0"}, - "down": {"uv": [2, 9.5, 0, 9.75], "texture": "#0"} - } - }, - { - "from": [4, 5, 11], - "to": [12, 8, 12], - "faces": { - "north": {"uv": [8, 6.25, 10, 7], "texture": "#0"}, - "east": {"uv": [9.5, 9, 9.75, 9.75], "texture": "#0"}, - "south": {"uv": [8, 7, 10, 7.75], "texture": "#0"}, - "west": {"uv": [9.25, 9.5, 9.5, 10.25], "texture": "#0"}, - "up": {"uv": [11.5, 0.25, 9.5, 0], "texture": "#0"}, - "down": {"uv": [11.5, 0.25, 9.5, 0.5], "texture": "#0"} - } - }, - { - "from": [5, 0, 5], - "to": [11, 5, 11], - "faces": { - "north": {"uv": [3, 8, 4.5, 9.25], "texture": "#0"}, - "east": {"uv": [8, 3, 9.5, 4.25], "texture": "#0"}, - "south": {"uv": [8, 4.25, 9.5, 5.5], "texture": "#0"}, - "west": {"uv": [4.5, 8, 6, 9.25], "texture": "#0"}, - "up": {"uv": [3, 9.5, 1.5, 8], "texture": "#0"}, - "down": {"uv": [9.5, 1.5, 8, 3], "texture": "#0"} - } - }, - { - "from": [4.5, 4, 4.5], - "to": [11.5, 5, 11.5], - "faces": { - "north": {"uv": [4.75, 10, 6.5, 10.25], "texture": "#0"}, - "east": {"uv": [4.75, 10.75, 6.5, 11], "texture": "#0"}, - "south": {"uv": [4.75, 10.75, 6.5, 11], "texture": "#0"}, - "west": {"uv": [4.75, 10, 6.5, 10.25], "texture": "#0"}, - "up": {"uv": [4.5, 9.5, 6.25, 11.25], "texture": "#0"}, - "down": {"uv": [4.5, 9.5, 6.25, 11.25], "texture": "#0"} - } - }, - { - "from": [8, 0, 0], - "to": [8, 16, 16], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 4], "texture": "#0"}, - "east": {"uv": [4, 0, 8, 4], "texture": "#0"}, - "south": {"uv": [0, 0, 0, 4], "texture": "#0"}, - "west": {"uv": [4, 4, 8, 8], "texture": "#0"}, - "up": {"uv": [0, 4, 0, 0], "texture": "#0"}, - "down": {"uv": [0, 0, 0, 4], "texture": "#0"} - } - }, - { - "from": [0, 0, 8], - "to": [16, 16, 8], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 4, 4], "texture": "#0"}, - "east": {"uv": [0, 0, 0, 4], "texture": "#0"}, - "south": {"uv": [0, 4, 4, 8], "texture": "#0"}, - "west": {"uv": [0, 0, 0, 4], "texture": "#0"}, - "up": {"uv": [0, 4, 0, 0], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 0, 4], "rotation": 90, "texture": "#0"} - } - } - ], - "groups": [ - { - "name": "test", - "origin": [8, 8, 8], - "color": 0, - "children": [ - { - "name": "Erde", - "origin": [0, 0, 0], - "color": 0, - "children": [0] - }, - { - "name": "Topf", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4, 5] - }, - { - "name": "Seile", - "origin": [-3, 8, -3], - "color": 0, - "children": [6] - }, - { - "name": "Rose", - "origin": [0, 0, 0], - "color": 0, - "children": [7, 8] - } - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/standing_pot_flat.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/standing_pot_flat.json deleted file mode 100644 index 1e108bb4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/standing_pot_flat.json +++ /dev/null @@ -1,441 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "beautify:block/pots/vine_pot", - "2": "beautify:block/pots/vine_pot_overlay", - "particle": "block/terracotta" - }, - "elements": [ - { - "from": [5, 6, 5], - "to": [11, 7, 11], - "faces": { - "north": {"uv": [9.5, 4.5, 11, 4.75], "texture": "#1"}, - "east": {"uv": [9.5, 4.75, 11, 5], "texture": "#1"}, - "south": {"uv": [9.5, 5, 11, 5.25], "texture": "#1"}, - "west": {"uv": [9.5, 5.25, 11, 5.5], "texture": "#1"}, - "up": {"uv": [1.5, 9.5, 0, 8], "texture": "#1"}, - "down": {"uv": [9.5, 0, 8, 1.5], "texture": "#1"} - } - }, - { - "from": [11, 5, 5], - "to": [12, 8, 11], - "faces": { - "north": {"uv": [8, 9.5, 8.25, 10.25], "texture": "#1"}, - "east": {"uv": [8, 7.75, 9.5, 8.5], "texture": "#1"}, - "south": {"uv": [8.25, 9.5, 8.5, 10.25], "texture": "#1"}, - "west": {"uv": [8, 8.5, 9.5, 9.25], "texture": "#1"}, - "up": {"uv": [7.25, 11, 7, 9.5], "texture": "#1"}, - "down": {"uv": [7.5, 9.5, 7.25, 11], "texture": "#1"} - } - }, - { - "from": [4, 5, 5], - "to": [5, 8, 11], - "faces": { - "north": {"uv": [9.5, 8.25, 9.75, 9], "texture": "#1"}, - "east": {"uv": [6, 8.75, 7.5, 9.5], "texture": "#1"}, - "south": {"uv": [8.5, 9.5, 8.75, 10.25], "texture": "#1"}, - "west": {"uv": [3, 9.25, 4.5, 10], "texture": "#1"}, - "up": {"uv": [7.75, 11, 7.5, 9.5], "texture": "#1"}, - "down": {"uv": [8, 9.5, 7.75, 11], "texture": "#1"} - } - }, - { - "from": [4, 5, 4], - "to": [12, 8, 5], - "faces": { - "north": {"uv": [8, 5.5, 10, 6.25], "texture": "#1"}, - "east": {"uv": [8.75, 9.5, 9, 10.25], "texture": "#1"}, - "south": {"uv": [6, 8, 8, 8.75], "texture": "#1"}, - "west": {"uv": [9, 9.5, 9.25, 10.25], "texture": "#1"}, - "up": {"uv": [9.5, 9.5, 7.5, 9.25], "texture": "#1"}, - "down": {"uv": [2, 9.5, 0, 9.75], "texture": "#1"} - } - }, - { - "from": [4, 5, 11], - "to": [12, 8, 12], - "faces": { - "north": {"uv": [8, 6.25, 10, 7], "texture": "#1"}, - "east": {"uv": [9.5, 9, 9.75, 9.75], "texture": "#1"}, - "south": {"uv": [8, 7, 10, 7.75], "texture": "#1"}, - "west": {"uv": [9.25, 9.5, 9.5, 10.25], "texture": "#1"}, - "up": {"uv": [11.5, 0.25, 9.5, 0], "texture": "#1"}, - "down": {"uv": [11.5, 0.25, 9.5, 0.5], "texture": "#1"} - } - }, - { - "from": [5, 0, 5], - "to": [11, 5, 11], - "faces": { - "north": {"uv": [3, 8, 4.5, 9.25], "texture": "#1"}, - "east": {"uv": [8, 3, 9.5, 4.25], "texture": "#1"}, - "south": {"uv": [8, 4.25, 9.5, 5.5], "texture": "#1"}, - "west": {"uv": [4.5, 8, 6, 9.25], "texture": "#1"}, - "up": {"uv": [3, 9.5, 1.5, 8], "texture": "#1"}, - "down": {"uv": [9.5, 1.5, 8, 3], "texture": "#1"} - } - }, - { - "from": [4.5, 4, 4.5], - "to": [11.5, 5, 11.5], - "faces": { - "north": {"uv": [4.75, 10, 6.5, 10.25], "texture": "#1"}, - "east": {"uv": [4.75, 10.75, 6.5, 11], "texture": "#1"}, - "south": {"uv": [4.75, 10.75, 6.5, 11], "texture": "#1"}, - "west": {"uv": [4.75, 10, 6.5, 10.25], "texture": "#1"}, - "up": {"uv": [4.5, 9.5, 6.25, 11.25], "texture": "#1"}, - "down": {"uv": [4.5, 9.5, 6.25, 11.25], "texture": "#1"} - } - }, - { - "name": "RankePot", - "from": [4, 8.5, 9.5], - "to": [12, 8.5, 14.5], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [0, 0, 2, 0], "rotation": 180, "texture": "#1"}, - "east": {"uv": [0, 0, 0, 1.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 0, 1.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 0, 2, 1.25], "texture": "#1"}, - "down": {"uv": [2, 0, 0, 1.25], "rotation": 180, "texture": "#1"} - } - }, - { - "name": "Ranke", - "from": [4, 0, 12.75], - "to": [12, 9, 12.75], - "faces": { - "north": {"uv": [2, 1.25, 0, 3.5], "texture": "#1"}, - "east": {"uv": [0, 1.25, 0, 3.5], "texture": "#1"}, - "south": {"uv": [0, 1.25, 2, 3.5], "texture": "#1"}, - "west": {"uv": [0, 1.25, 0, 3.5], "texture": "#1"}, - "up": {"uv": [0, 1.25, 2, 1.25], "texture": "#1"}, - "down": {"uv": [0, 1.25, 2, 1.25], "texture": "#1"} - } - }, - { - "name": "OverlayPot", - "from": [4, 9, 9.5], - "to": [12, 9, 14.5], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [0, 0, 2, 0], "rotation": 180, "texture": "#2"}, - "east": {"uv": [0, 0, 0, 1.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0, 0, 2, 0], "texture": "#2"}, - "west": {"uv": [0, 0, 0, 1.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0, 0, 2, 1.25], "texture": "#2"}, - "down": {"uv": [2, 0, 0, 1.25], "rotation": 180, "texture": "#2"} - } - }, - { - "name": "Overlay", - "from": [4, 0, 13.25], - "to": [12, 9, 13.25], - "faces": { - "north": {"uv": [2, 1.25, 0, 3.5], "texture": "#2"}, - "east": {"uv": [0, 1.25, 0, 3.5], "texture": "#2"}, - "south": {"uv": [0, 1.25, 2, 3.5], "texture": "#2"}, - "west": {"uv": [0, 1.25, 0, 3.5], "texture": "#2"}, - "up": {"uv": [0, 1.25, 2, 1.25], "texture": "#2"}, - "down": {"uv": [0, 1.25, 2, 1.25], "texture": "#2"} - } - }, - { - "name": "RankePot", - "from": [9.25, 6.75, 4], - "to": [14.25, 6.75, 12], - "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [6, 0, 6, 1.25], "rotation": 90, "texture": "#1"}, - "east": {"uv": [6, 0, 8, 0], "texture": "#1"}, - "south": {"uv": [6, 0, 6, 1.25], "rotation": 270, "texture": "#1"}, - "west": {"uv": [6, 0, 8, 0], "rotation": 180, "texture": "#1"}, - "up": {"uv": [6, 0, 8, 1.25], "rotation": 270, "texture": "#1"}, - "down": {"uv": [8, 0, 6, 1.25], "rotation": 270, "texture": "#1"} - } - }, - { - "name": "OverlayPot", - "from": [9.25, 7.25, 4], - "to": [14.25, 7.25, 12], - "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [2, 0, 2, 1.25], "rotation": 90, "texture": "#2"}, - "east": {"uv": [2, 0, 4, 0], "texture": "#2"}, - "south": {"uv": [2, 0, 2, 1.25], "rotation": 270, "texture": "#2"}, - "west": {"uv": [2, 0, 4, 0], "rotation": 180, "texture": "#2"}, - "up": {"uv": [2, 0, 4, 1.25], "rotation": 270, "texture": "#2"}, - "down": {"uv": [4, 0, 2, 1.25], "rotation": 270, "texture": "#2"} - } - }, - { - "name": "Ranke", - "from": [12.75, 0, 4], - "to": [12.75, 9, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [6, 1.25, 6, 3.5], "texture": "#1"}, - "east": {"uv": [6, 1.25, 8, 3.5], "texture": "#1"}, - "south": {"uv": [6, 1.25, 6, 3.5], "texture": "#1"}, - "west": {"uv": [8, 1.25, 6, 3.5], "texture": "#1"}, - "up": {"uv": [6, 1.25, 8, 1.25], "rotation": 270, "texture": "#1"}, - "down": {"uv": [6, 1.25, 8, 1.25], "rotation": 90, "texture": "#1"} - } - }, - { - "name": "Overlay", - "from": [13.25, 0, 4], - "to": [13.25, 9, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [2, 1.25, 2, 3.5], "texture": "#2"}, - "east": {"uv": [2, 1.25, 4, 3.5], "texture": "#2"}, - "south": {"uv": [2, 1.25, 2, 3.5], "texture": "#2"}, - "west": {"uv": [4, 1.25, 2, 3.5], "texture": "#2"}, - "up": {"uv": [2, 1.25, 4, 1.25], "rotation": 270, "texture": "#2"}, - "down": {"uv": [2, 1.25, 4, 1.25], "rotation": 90, "texture": "#2"} - } - }, - { - "name": "RankePot", - "from": [1.75, 6.75, 4], - "to": [6.75, 6.75, 12], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [2, 0, 2, 1.25], "rotation": 90, "texture": "#1"}, - "east": {"uv": [2, 0, 4, 0], "texture": "#1"}, - "south": {"uv": [2, 0, 2, 1.25], "rotation": 270, "texture": "#1"}, - "west": {"uv": [2, 0, 4, 0], "rotation": 180, "texture": "#1"}, - "up": {"uv": [4, 1.25, 2, 0], "rotation": 270, "texture": "#1"}, - "down": {"uv": [2, 1.25, 4, 0], "rotation": 270, "texture": "#1"} - } - }, - { - "name": "OverlayPot", - "from": [1.75, 7, 4.25], - "to": [6.75, 7, 12.25], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [4, 0, 4, 1.25], "rotation": 90, "texture": "#2"}, - "east": {"uv": [4, 0, 6, 0], "texture": "#2"}, - "south": {"uv": [4, 0, 4, 1.25], "rotation": 270, "texture": "#2"}, - "west": {"uv": [4, 0, 6, 0], "rotation": 180, "texture": "#2"}, - "up": {"uv": [6, 1.25, 4, 0], "rotation": 270, "texture": "#2"}, - "down": {"uv": [4, 1.25, 6, 0], "rotation": 270, "texture": "#2"} - } - }, - { - "name": "Ranke", - "from": [3.25, 0, 4], - "to": [3.25, 9, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [2, 1.25, 2, 3.5], "texture": "#1"}, - "east": {"uv": [4, 1.25, 2, 3.5], "texture": "#1"}, - "south": {"uv": [2, 1.25, 2, 3.5], "texture": "#1"}, - "west": {"uv": [2, 1.25, 4, 3.5], "texture": "#1"}, - "up": {"uv": [2, 1.25, 4, 1.25], "rotation": 270, "texture": "#1"}, - "down": {"uv": [2, 1.25, 4, 1.25], "rotation": 90, "texture": "#1"} - } - }, - { - "name": "Overlay", - "from": [2.75, 0, 4], - "to": [2.75, 9, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [4, 1.25, 4, 3.5], "texture": "#2"}, - "east": {"uv": [6, 1.25, 4, 3.5], "texture": "#2"}, - "south": {"uv": [4, 1.25, 4, 3.5], "texture": "#2"}, - "west": {"uv": [4, 1.25, 6, 3.5], "texture": "#2"}, - "up": {"uv": [4, 1.25, 6, 1.25], "rotation": 270, "texture": "#2"}, - "down": {"uv": [4, 1.25, 6, 1.25], "rotation": 90, "texture": "#2"} - } - }, - { - "name": "RankePot", - "from": [4, 5, 2], - "to": [12, 5, 7], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [4, 0, 6, 0], "texture": "#1"}, - "east": {"uv": [4, 0, 4, 1.25], "rotation": 270, "texture": "#1"}, - "south": {"uv": [4, 0, 6, 0], "rotation": 180, "texture": "#1"}, - "west": {"uv": [4, 0, 4, 1.25], "rotation": 90, "texture": "#1"}, - "up": {"uv": [4, 0, 6, 1.25], "rotation": 180, "texture": "#1"}, - "down": {"uv": [6, 0, 4, 1.25], "texture": "#1"} - } - }, - { - "name": "OverlayPot", - "from": [4, 5.5, 2], - "to": [12, 5.5, 7], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [6, 0, 8, 0], "texture": "#2"}, - "east": {"uv": [6, 0, 6, 1.25], "rotation": 270, "texture": "#2"}, - "south": {"uv": [6, 0, 8, 0], "rotation": 180, "texture": "#2"}, - "west": {"uv": [6, 0, 6, 1.25], "rotation": 90, "texture": "#2"}, - "up": {"uv": [6, 0, 8, 1.25], "rotation": 180, "texture": "#2"}, - "down": {"uv": [8, 0, 6, 1.25], "texture": "#2"} - } - }, - { - "name": "Ranke", - "from": [4, 0, 3.25], - "to": [12, 9, 3.25], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [4, 1.25, 6, 3.5], "texture": "#1"}, - "east": {"uv": [4, 1.25, 4, 3.5], "texture": "#1"}, - "south": {"uv": [6, 1.25, 4, 3.5], "texture": "#1"}, - "west": {"uv": [4, 1.25, 4, 3.5], "texture": "#1"}, - "up": {"uv": [4, 1.25, 6, 1.25], "rotation": 180, "texture": "#1"}, - "down": {"uv": [4, 1.25, 6, 1.25], "rotation": 180, "texture": "#1"} - } - }, - { - "name": "Overlay", - "from": [4, 0, 2.75], - "to": [12, 9, 2.75], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [6, 1.25, 8, 3.5], "texture": "#2"}, - "east": {"uv": [6, 1.25, 6, 3.5], "texture": "#2"}, - "south": {"uv": [8, 1.25, 6, 3.5], "texture": "#2"}, - "west": {"uv": [6, 1.25, 6, 3.5], "texture": "#2"}, - "up": {"uv": [6, 1.25, 8, 1.25], "rotation": 180, "texture": "#2"}, - "down": {"uv": [6, 1.25, 8, 1.25], "rotation": 180, "texture": "#2"} - } - }, - { - "from": [-1, 2, 8], - "to": [17, 11, 8], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 7, 8]}, - "faces": { - "north": {"uv": [0, 5.5, 4.5, 7.75], "texture": "#1"}, - "east": {"uv": [0, 5.5, 0, 7.75], "texture": "#1"}, - "south": {"uv": [4.5, 5.5, 0, 7.75], "texture": "#1"}, - "west": {"uv": [0, 5.5, 0, 7.75], "texture": "#1"}, - "up": {"uv": [0, 3.25, 0, 7.75], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 3.25, 0, 7.75], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [8, 3, -1], - "to": [8, 12, 17], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 7, 8]}, - "faces": { - "north": {"uv": [0, 3.25, 0, 5.5], "texture": "#1"}, - "east": {"uv": [0, 3.25, 4.5, 5.5], "texture": "#1"}, - "south": {"uv": [0, 3.25, 0, 5.5], "texture": "#1"}, - "west": {"uv": [4.5, 3.25, 0, 5.5], "texture": "#1"}, - "up": {"uv": [0, 1, 0, 5.5], "texture": "#1"}, - "down": {"uv": [0, 1, 0, 5.5], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [67.54, -29.2, 0.06], - "translation": [0, -2.75, -4.5], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "rotation": [67.54, -29.2, 0.06], - "translation": [0, -2.75, -4.5], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [0, 50.75, 0], - "translation": [0.75, 3.25, 0], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_lefthand": { - "rotation": [0, 50.75, 0], - "translation": [0.75, 3.25, 0], - "scale": [0.65, 0.65, 0.65] - }, - "ground": { - "translation": [0, 1.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "gui": { - "rotation": [25.75, -45, 0], - "translation": [0, 0.5, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "translation": [0, 14.25, 0] - } - }, - "groups": [ - { - "name": "pot", - "origin": [8, 8, 8], - "color": 0, - "children": [ - { - "name": "Erde", - "origin": [0, 0, 0], - "color": 0, - "children": [0] - }, - { - "name": "Topf", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4, 5] - }, - { - "name": "Seile", - "origin": [-3, 8, -3], - "color": 0, - "children": [6] - } - ] - }, - { - "name": "greens", - "origin": [10, 7.5, 3.75], - "color": 0, - "children": [ - { - "name": "1", - "origin": [0, 0, 0], - "color": 0, - "children": [7, 8, 9, 10] - }, - { - "name": "2", - "origin": [8, 4, 13], - "color": 0, - "children": [11, 12, 13, 14] - }, - { - "name": "3", - "origin": [8, 4, 13], - "color": 0, - "children": [15, 16, 17, 18] - }, - { - "name": "4", - "origin": [8, 4, 12.5], - "color": 0, - "children": [19, 20, 21, 22] - }, - { - "name": "5", - "origin": [8, 7, 8], - "color": 0, - "children": [23, 24] - } - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/standing_pot_flat_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/standing_pot_flat_grown.json deleted file mode 100644 index fe788c46..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/standing_pot_flat_grown.json +++ /dev/null @@ -1,441 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "beautify:block/pots/vine_pot_grown", - "2": "beautify:block/pots/vine_pot_overlay_grown", - "particle": "block/terracotta" - }, - "elements": [ - { - "from": [5, 6, 5], - "to": [11, 7, 11], - "faces": { - "north": {"uv": [9.5, 4.5, 11, 4.75], "texture": "#1"}, - "east": {"uv": [9.5, 4.75, 11, 5], "texture": "#1"}, - "south": {"uv": [9.5, 5, 11, 5.25], "texture": "#1"}, - "west": {"uv": [9.5, 5.25, 11, 5.5], "texture": "#1"}, - "up": {"uv": [1.5, 9.5, 0, 8], "texture": "#1"}, - "down": {"uv": [9.5, 0, 8, 1.5], "texture": "#1"} - } - }, - { - "from": [11, 5, 5], - "to": [12, 8, 11], - "faces": { - "north": {"uv": [8, 9.5, 8.25, 10.25], "texture": "#1"}, - "east": {"uv": [8, 7.75, 9.5, 8.5], "texture": "#1"}, - "south": {"uv": [8.25, 9.5, 8.5, 10.25], "texture": "#1"}, - "west": {"uv": [8, 8.5, 9.5, 9.25], "texture": "#1"}, - "up": {"uv": [7.25, 11, 7, 9.5], "texture": "#1"}, - "down": {"uv": [7.5, 9.5, 7.25, 11], "texture": "#1"} - } - }, - { - "from": [4, 5, 5], - "to": [5, 8, 11], - "faces": { - "north": {"uv": [9.5, 8.25, 9.75, 9], "texture": "#1"}, - "east": {"uv": [6, 8.75, 7.5, 9.5], "texture": "#1"}, - "south": {"uv": [8.5, 9.5, 8.75, 10.25], "texture": "#1"}, - "west": {"uv": [3, 9.25, 4.5, 10], "texture": "#1"}, - "up": {"uv": [7.75, 11, 7.5, 9.5], "texture": "#1"}, - "down": {"uv": [8, 9.5, 7.75, 11], "texture": "#1"} - } - }, - { - "from": [4, 5, 4], - "to": [12, 8, 5], - "faces": { - "north": {"uv": [8, 5.5, 10, 6.25], "texture": "#1"}, - "east": {"uv": [8.75, 9.5, 9, 10.25], "texture": "#1"}, - "south": {"uv": [6, 8, 8, 8.75], "texture": "#1"}, - "west": {"uv": [9, 9.5, 9.25, 10.25], "texture": "#1"}, - "up": {"uv": [9.5, 9.5, 7.5, 9.25], "texture": "#1"}, - "down": {"uv": [2, 9.5, 0, 9.75], "texture": "#1"} - } - }, - { - "from": [4, 5, 11], - "to": [12, 8, 12], - "faces": { - "north": {"uv": [8, 6.25, 10, 7], "texture": "#1"}, - "east": {"uv": [9.5, 9, 9.75, 9.75], "texture": "#1"}, - "south": {"uv": [8, 7, 10, 7.75], "texture": "#1"}, - "west": {"uv": [9.25, 9.5, 9.5, 10.25], "texture": "#1"}, - "up": {"uv": [11.5, 0.25, 9.5, 0], "texture": "#1"}, - "down": {"uv": [11.5, 0.25, 9.5, 0.5], "texture": "#1"} - } - }, - { - "from": [5, 0, 5], - "to": [11, 5, 11], - "faces": { - "north": {"uv": [3, 8, 4.5, 9.25], "texture": "#1"}, - "east": {"uv": [8, 3, 9.5, 4.25], "texture": "#1"}, - "south": {"uv": [8, 4.25, 9.5, 5.5], "texture": "#1"}, - "west": {"uv": [4.5, 8, 6, 9.25], "texture": "#1"}, - "up": {"uv": [3, 9.5, 1.5, 8], "texture": "#1"}, - "down": {"uv": [9.5, 1.5, 8, 3], "texture": "#1"} - } - }, - { - "from": [4.5, 4, 4.5], - "to": [11.5, 5, 11.5], - "faces": { - "north": {"uv": [4.75, 10, 6.5, 10.25], "texture": "#1"}, - "east": {"uv": [4.75, 10.75, 6.5, 11], "texture": "#1"}, - "south": {"uv": [4.75, 10.75, 6.5, 11], "texture": "#1"}, - "west": {"uv": [4.75, 10, 6.5, 10.25], "texture": "#1"}, - "up": {"uv": [4.5, 9.5, 6.25, 11.25], "texture": "#1"}, - "down": {"uv": [4.5, 9.5, 6.25, 11.25], "texture": "#1"} - } - }, - { - "name": "RankePot", - "from": [4, 8.5, 9.5], - "to": [12, 8.5, 14.5], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [0, 0, 2, 0], "rotation": 180, "texture": "#1"}, - "east": {"uv": [0, 0, 0, 1.25], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0, 0, 2, 0], "texture": "#1"}, - "west": {"uv": [0, 0, 0, 1.25], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 0, 2, 1.25], "texture": "#1"}, - "down": {"uv": [2, 0, 0, 1.25], "rotation": 180, "texture": "#1"} - } - }, - { - "name": "Ranke", - "from": [4, -13, 12.75], - "to": [12, 9, 12.75], - "faces": { - "north": {"uv": [2, 1.25, 0, 6.75], "texture": "#1"}, - "east": {"uv": [0, 1.25, 0, 6.75], "texture": "#1"}, - "south": {"uv": [0, 1.25, 2, 6.75], "texture": "#1"}, - "west": {"uv": [0, 1.25, 0, 6.75], "texture": "#1"}, - "up": {"uv": [0, 1.25, 2, 1.25], "texture": "#1"}, - "down": {"uv": [0, 1.25, 2, 1.25], "texture": "#1"} - } - }, - { - "name": "OverlayPot", - "from": [4, 9, 9.5], - "to": [12, 9, 14.5], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [0, 0, 2, 0], "rotation": 180, "texture": "#2"}, - "east": {"uv": [0, 0, 0, 1.25], "rotation": 90, "texture": "#2"}, - "south": {"uv": [0, 0, 2, 0], "texture": "#2"}, - "west": {"uv": [0, 0, 0, 1.25], "rotation": 270, "texture": "#2"}, - "up": {"uv": [0, 0, 2, 1.25], "texture": "#2"}, - "down": {"uv": [2, 0, 0, 1.25], "rotation": 180, "texture": "#2"} - } - }, - { - "name": "Overlay", - "from": [4, -13, 13.25], - "to": [12, 9, 13.25], - "faces": { - "north": {"uv": [2, 1.25, 0, 6.75], "texture": "#2"}, - "east": {"uv": [0, 1.25, 0, 6.75], "texture": "#2"}, - "south": {"uv": [0, 1.25, 2, 6.75], "texture": "#2"}, - "west": {"uv": [0, 1.25, 0, 6.75], "texture": "#2"}, - "up": {"uv": [0, 1.25, 2, 1.25], "texture": "#2"}, - "down": {"uv": [0, 1.25, 2, 1.25], "texture": "#2"} - } - }, - { - "name": "RankePot", - "from": [9.25, 6.75, 4], - "to": [14.25, 6.75, 12], - "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [6, 0, 6, 1.25], "rotation": 90, "texture": "#1"}, - "east": {"uv": [6, 0, 8, 0], "texture": "#1"}, - "south": {"uv": [6, 0, 6, 1.25], "rotation": 270, "texture": "#1"}, - "west": {"uv": [6, 0, 8, 0], "rotation": 180, "texture": "#1"}, - "up": {"uv": [6, 0, 8, 1.25], "rotation": 270, "texture": "#1"}, - "down": {"uv": [8, 0, 6, 1.25], "rotation": 270, "texture": "#1"} - } - }, - { - "name": "OverlayPot", - "from": [9.25, 7.25, 4], - "to": [14.25, 7.25, 12], - "rotation": {"angle": 22.5, "axis": "z", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [2, 0, 2, 1.25], "rotation": 90, "texture": "#2"}, - "east": {"uv": [2, 0, 4, 0], "texture": "#2"}, - "south": {"uv": [2, 0, 2, 1.25], "rotation": 270, "texture": "#2"}, - "west": {"uv": [2, 0, 4, 0], "rotation": 180, "texture": "#2"}, - "up": {"uv": [2, 0, 4, 1.25], "rotation": 270, "texture": "#2"}, - "down": {"uv": [4, 0, 2, 1.25], "rotation": 270, "texture": "#2"} - } - }, - { - "name": "Ranke", - "from": [12.75, -13, 4], - "to": [12.75, 9, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [6, 1.25, 6, 6.75], "texture": "#1"}, - "east": {"uv": [6, 1.25, 8, 6.75], "texture": "#1"}, - "south": {"uv": [6, 1.25, 6, 6.75], "texture": "#1"}, - "west": {"uv": [8, 1.25, 6, 6.75], "texture": "#1"}, - "up": {"uv": [6, 1.25, 8, 1.25], "rotation": 270, "texture": "#1"}, - "down": {"uv": [6, 1.25, 8, 1.25], "rotation": 90, "texture": "#1"} - } - }, - { - "name": "Overlay", - "from": [13.25, -13, 4], - "to": [13.25, 9, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [2, 1.25, 2, 6.75], "texture": "#2"}, - "east": {"uv": [2, 1.25, 4, 6.75], "texture": "#2"}, - "south": {"uv": [2, 1.25, 2, 6.75], "texture": "#2"}, - "west": {"uv": [4, 1.25, 2, 6.75], "texture": "#2"}, - "up": {"uv": [2, 1.25, 4, 1.25], "rotation": 270, "texture": "#2"}, - "down": {"uv": [2, 1.25, 4, 1.25], "rotation": 90, "texture": "#2"} - } - }, - { - "name": "RankePot", - "from": [1.75, 6.75, 4], - "to": [6.75, 6.75, 12], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [2, 0, 2, 1.25], "rotation": 90, "texture": "#1"}, - "east": {"uv": [2, 0, 4, 0], "texture": "#1"}, - "south": {"uv": [2, 0, 2, 1.25], "rotation": 270, "texture": "#1"}, - "west": {"uv": [2, 0, 4, 0], "rotation": 180, "texture": "#1"}, - "up": {"uv": [4, 1.25, 2, 0], "rotation": 270, "texture": "#1"}, - "down": {"uv": [2, 1.25, 4, 0], "rotation": 270, "texture": "#1"} - } - }, - { - "name": "OverlayPot", - "from": [1.75, 7, 4.25], - "to": [6.75, 7, 12.25], - "rotation": {"angle": -22.5, "axis": "z", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [4, 0, 4, 1.25], "rotation": 90, "texture": "#2"}, - "east": {"uv": [4, 0, 6, 0], "texture": "#2"}, - "south": {"uv": [4, 0, 4, 1.25], "rotation": 270, "texture": "#2"}, - "west": {"uv": [4, 0, 6, 0], "rotation": 180, "texture": "#2"}, - "up": {"uv": [6, 1.25, 4, 0], "rotation": 270, "texture": "#2"}, - "down": {"uv": [4, 1.25, 6, 0], "rotation": 270, "texture": "#2"} - } - }, - { - "name": "Ranke", - "from": [3.25, -13, 4], - "to": [3.25, 9, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [2, 1.25, 2, 6.75], "texture": "#1"}, - "east": {"uv": [4, 1.25, 2, 6.75], "texture": "#1"}, - "south": {"uv": [2, 1.25, 2, 6.75], "texture": "#1"}, - "west": {"uv": [2, 1.25, 4, 6.75], "texture": "#1"}, - "up": {"uv": [2, 1.25, 4, 1.25], "rotation": 270, "texture": "#1"}, - "down": {"uv": [2, 1.25, 4, 1.25], "rotation": 90, "texture": "#1"} - } - }, - { - "name": "Overlay", - "from": [2.75, -13, 4], - "to": [2.75, 9, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 13]}, - "faces": { - "north": {"uv": [4, 1.25, 4, 6.75], "texture": "#2"}, - "east": {"uv": [6, 1.25, 4, 6.75], "texture": "#2"}, - "south": {"uv": [4, 1.25, 4, 6.75], "texture": "#2"}, - "west": {"uv": [4, 1.25, 6, 6.75], "texture": "#2"}, - "up": {"uv": [4, 1.25, 6, 1.25], "rotation": 270, "texture": "#2"}, - "down": {"uv": [4, 1.25, 6, 1.25], "rotation": 90, "texture": "#2"} - } - }, - { - "name": "RankePot", - "from": [4, 5, 2], - "to": [12, 5, 7], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [4, 0, 6, 0], "texture": "#1"}, - "east": {"uv": [4, 0, 4, 1.25], "rotation": 270, "texture": "#1"}, - "south": {"uv": [4, 0, 6, 0], "rotation": 180, "texture": "#1"}, - "west": {"uv": [4, 0, 4, 1.25], "rotation": 90, "texture": "#1"}, - "up": {"uv": [4, 0, 6, 1.25], "rotation": 180, "texture": "#1"}, - "down": {"uv": [6, 0, 4, 1.25], "texture": "#1"} - } - }, - { - "name": "OverlayPot", - "from": [4, 5.5, 2], - "to": [12, 5.5, 7], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [6, 0, 8, 0], "texture": "#2"}, - "east": {"uv": [6, 0, 6, 1.25], "rotation": 270, "texture": "#2"}, - "south": {"uv": [6, 0, 8, 0], "rotation": 180, "texture": "#2"}, - "west": {"uv": [6, 0, 6, 1.25], "rotation": 90, "texture": "#2"}, - "up": {"uv": [6, 0, 8, 1.25], "rotation": 180, "texture": "#2"}, - "down": {"uv": [8, 0, 6, 1.25], "texture": "#2"} - } - }, - { - "name": "Ranke", - "from": [4, -13, 3.25], - "to": [12, 9, 3.25], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [4, 1.25, 6, 6.75], "texture": "#1"}, - "east": {"uv": [4, 1.25, 4, 6.75], "texture": "#1"}, - "south": {"uv": [6, 1.25, 4, 6.75], "texture": "#1"}, - "west": {"uv": [4, 1.25, 4, 6.75], "texture": "#1"}, - "up": {"uv": [4, 1.25, 6, 1.25], "rotation": 180, "texture": "#1"}, - "down": {"uv": [4, 1.25, 6, 1.25], "rotation": 180, "texture": "#1"} - } - }, - { - "name": "Overlay", - "from": [4, -13, 2.75], - "to": [12, 9, 2.75], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 12.5]}, - "faces": { - "north": {"uv": [6, 1.25, 8, 6.75], "texture": "#2"}, - "east": {"uv": [6, 1.25, 6, 6.75], "texture": "#2"}, - "south": {"uv": [8, 1.25, 6, 6.75], "texture": "#2"}, - "west": {"uv": [6, 1.25, 6, 6.75], "texture": "#2"}, - "up": {"uv": [6, 1.25, 8, 1.25], "rotation": 180, "texture": "#2"}, - "down": {"uv": [6, 1.25, 8, 1.25], "rotation": 180, "texture": "#2"} - } - }, - { - "from": [-1, 3, 8], - "to": [17, 11, 8], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 7, 8]}, - "faces": { - "north": {"uv": [4.5, 11.75, 0, 13.75], "texture": "#1"}, - "east": {"uv": [0, 11.75, 0, 13.75], "texture": "#1"}, - "south": {"uv": [0, 11.75, 4.5, 13.75], "texture": "#1"}, - "west": {"uv": [0, 11.75, 0, 13.75], "texture": "#1"}, - "up": {"uv": [0, 9.5, 0, 14], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 9.5, 0, 14], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [-1, 2, 8], - "to": [17, 11, 8], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 7, 8]}, - "faces": { - "north": {"uv": [0, 13.75, 4.5, 16], "texture": "#1"}, - "east": {"uv": [0, 13.75, 0, 16], "texture": "#1"}, - "south": {"uv": [4.5, 13.75, 0, 16], "texture": "#1"}, - "west": {"uv": [0, 13.75, 0, 16], "texture": "#1"}, - "up": {"uv": [0, 11.5, 0, 16], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 11.5, 0, 16], "rotation": 90, "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [67.54, -29.2, 0.06], - "translation": [0, -2.75, -4.5], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "rotation": [67.54, -29.2, 0.06], - "translation": [0, -2.75, -4.5], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [0, 50.75, 0], - "translation": [0.75, 3.25, 0], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_lefthand": { - "rotation": [0, 50.75, 0], - "translation": [0.75, 3.25, 0], - "scale": [0.65, 0.65, 0.65] - }, - "ground": { - "translation": [0, 1.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "gui": { - "rotation": [25.75, -45, 0], - "translation": [0, 0.5, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "translation": [0, 14.25, 0] - } - }, - "groups": [ - { - "name": "pot", - "origin": [8, 8, 8], - "color": 0, - "children": [ - { - "name": "Erde", - "origin": [0, 0, 0], - "color": 0, - "children": [0] - }, - { - "name": "Topf", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4, 5] - }, - { - "name": "Seile", - "origin": [-3, 8, -3], - "color": 0, - "children": [6] - } - ] - }, - { - "name": "greens", - "origin": [10, 7.5, 3.75], - "color": 0, - "children": [ - { - "name": "1", - "origin": [0, 0, 0], - "color": 0, - "children": [7, 8, 9, 10] - }, - { - "name": "2", - "origin": [8, 4, 13], - "color": 0, - "children": [11, 12, 13, 14] - }, - { - "name": "3", - "origin": [8, 4, 13], - "color": 0, - "children": [15, 16, 17, 18] - }, - { - "name": "4", - "origin": [8, 4, 12.5], - "color": 0, - "children": [19, 20, 21, 22] - }, - { - "name": "5", - "origin": [8, 7, 8], - "color": 0, - "children": [23, 24] - } - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/standing_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/standing_pot_grown.json deleted file mode 100644 index 550f3029..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/base/standing_pot_grown.json +++ /dev/null @@ -1,187 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "0": "beautify:block/pots/grass_pot_grown", - "particle": "block/terracotta" - }, - "elements": [ - { - "from": [5, 5, 5], - "to": [11, 6, 11], - "faces": { - "north": {"uv": [9.5, 4.5, 11, 4.75], "texture": "#0"}, - "east": {"uv": [9.5, 4.75, 11, 5], "texture": "#0"}, - "south": {"uv": [9.5, 5, 11, 5.25], "texture": "#0"}, - "west": {"uv": [9.5, 5.25, 11, 5.5], "texture": "#0"}, - "up": {"uv": [1.5, 9.5, 0, 8], "texture": "#0"}, - "down": {"uv": [9.5, 0, 8, 1.5], "texture": "#0"} - } - }, - { - "from": [11, 5, 5], - "to": [12, 8, 11], - "faces": { - "north": {"uv": [8, 9.5, 8.25, 10.25], "texture": "#0"}, - "east": {"uv": [8, 7.75, 9.5, 8.5], "texture": "#0"}, - "south": {"uv": [8.25, 9.5, 8.5, 10.25], "texture": "#0"}, - "west": {"uv": [8, 8.5, 9.5, 9.25], "texture": "#0"}, - "up": {"uv": [7.25, 11, 7, 9.5], "texture": "#0"}, - "down": {"uv": [7.5, 9.5, 7.25, 11], "texture": "#0"} - } - }, - { - "from": [4, 5, 5], - "to": [5, 8, 11], - "faces": { - "north": {"uv": [9.5, 8.25, 9.75, 9], "texture": "#0"}, - "east": {"uv": [6, 8.75, 7.5, 9.5], "texture": "#0"}, - "south": {"uv": [8.5, 9.5, 8.75, 10.25], "texture": "#0"}, - "west": {"uv": [3, 9.25, 4.5, 10], "texture": "#0"}, - "up": {"uv": [7.75, 11, 7.5, 9.5], "texture": "#0"}, - "down": {"uv": [8, 9.5, 7.75, 11], "texture": "#0"} - } - }, - { - "from": [4, 5, 4], - "to": [12, 8, 5], - "faces": { - "north": {"uv": [8, 5.5, 10, 6.25], "texture": "#0"}, - "east": {"uv": [8.75, 9.5, 9, 10.25], "texture": "#0"}, - "south": {"uv": [6, 8, 8, 8.75], "texture": "#0"}, - "west": {"uv": [9, 9.5, 9.25, 10.25], "texture": "#0"}, - "up": {"uv": [9.5, 9.5, 7.5, 9.25], "texture": "#0"}, - "down": {"uv": [2, 9.5, 0, 9.75], "texture": "#0"} - } - }, - { - "from": [4, 5, 11], - "to": [12, 8, 12], - "faces": { - "north": {"uv": [8, 6.25, 10, 7], "texture": "#0"}, - "east": {"uv": [9.5, 9, 9.75, 9.75], "texture": "#0"}, - "south": {"uv": [8, 7, 10, 7.75], "texture": "#0"}, - "west": {"uv": [9.25, 9.5, 9.5, 10.25], "texture": "#0"}, - "up": {"uv": [11.5, 0.25, 9.5, 0], "texture": "#0"}, - "down": {"uv": [11.5, 0.25, 9.5, 0.5], "texture": "#0"} - } - }, - { - "from": [5, 0, 5], - "to": [11, 5, 11], - "faces": { - "north": {"uv": [3, 8, 4.5, 9.25], "texture": "#0"}, - "east": {"uv": [8, 3, 9.5, 4.25], "texture": "#0"}, - "south": {"uv": [8, 4.25, 9.5, 5.5], "texture": "#0"}, - "west": {"uv": [4.5, 8, 6, 9.25], "texture": "#0"}, - "up": {"uv": [3, 9.5, 1.5, 8], "texture": "#0"}, - "down": {"uv": [9.5, 1.5, 8, 3], "texture": "#0"} - } - }, - { - "from": [4.5, 4, 4.5], - "to": [11.5, 5, 11.5], - "faces": { - "north": {"uv": [4.75, 10, 6.5, 10.25], "texture": "#0"}, - "east": {"uv": [4.75, 10.75, 6.5, 11], "texture": "#0"}, - "south": {"uv": [4.75, 10.75, 6.5, 11], "texture": "#0"}, - "west": {"uv": [4.75, 10, 6.5, 10.25], "texture": "#0"}, - "up": {"uv": [4.5, 9.5, 6.25, 11.25], "texture": "#0"}, - "down": {"uv": [4.5, 9.5, 6.25, 11.25], "texture": "#0"} - } - }, - { - "from": [0, -16, 8], - "to": [16, 16, 8], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [4, 0, 8, 8], "texture": "#0"}, - "east": {"uv": [0, 0, 0, 8], "texture": "#0"}, - "south": {"uv": [8, 0, 4, 8], "texture": "#0"}, - "west": {"uv": [0, 0, 0, 8], "texture": "#0"}, - "up": {"uv": [0, 4, 0, 0], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 0, 4], "rotation": 270, "texture": "#0"} - } - }, - { - "from": [0, -16, 8], - "to": [16, 16, 8], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 4, 8], "texture": "#0"}, - "east": {"uv": [0, 0, 0, 8], "texture": "#0"}, - "south": {"uv": [4, 0, 0, 8], "texture": "#0"}, - "west": {"uv": [0, 0, 0, 8], "texture": "#0"}, - "up": {"uv": [0, 4, 0, 0], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 0, 4], "rotation": 270, "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [67.54, -29.2, 0.06], - "translation": [0, -2.75, -4.5], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "rotation": [67.54, -29.2, 0.06], - "translation": [0, -2.75, -4.5], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [0, 50.75, 0], - "translation": [0.75, 3.25, 0], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_lefthand": { - "rotation": [0, 50.75, 0], - "translation": [0.75, 3.25, 0], - "scale": [0.65, 0.65, 0.65] - }, - "ground": { - "translation": [0, 1.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "gui": { - "rotation": [25.75, -45, 0], - "translation": [0, 0.5, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "translation": [0, 14.25, 0] - } - }, - "groups": [ - { - "name": "test", - "origin": [8, 8, 8], - "color": 0, - "children": [ - { - "name": "Erde", - "origin": [0, 0, 0], - "color": 0, - "children": [0] - }, - { - "name": "Topf", - "origin": [0, 0, 0], - "color": 0, - "children": [1, 2, 3, 4, 5] - }, - { - "name": "Seile", - "origin": [-3, 8, -3], - "color": 0, - "children": [6] - }, - { - "name": "Rose", - "origin": [0, 0, 0], - "color": 0, - "children": [7, 8] - } - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/berry/berry_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/berry/berry_pot.json deleted file mode 100644 index 4164a209..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/berry/berry_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/berry_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/berry/berry_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/berry/berry_pot_grown.json deleted file mode 100644 index 3410e379..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/berry/berry_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/berry_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/berry/standing_berry_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/berry/standing_berry_pot.json deleted file mode 100644 index dacc8a17..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/berry/standing_berry_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/berry_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/berry/standing_berry_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/berry/standing_berry_pot_grown.json deleted file mode 100644 index c2cbbc96..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/berry/standing_berry_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/berry_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/cornflower/cornflower_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/cornflower/cornflower_pot.json deleted file mode 100644 index dc23e0a5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/cornflower/cornflower_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/cornflower_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/cornflower/cornflower_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/cornflower/cornflower_pot_grown.json deleted file mode 100644 index 26ab1db4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/cornflower/cornflower_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/cornflower_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/cornflower/standing_cornflower_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/cornflower/standing_cornflower_pot.json deleted file mode 100644 index f29832f1..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/cornflower/standing_cornflower_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/cornflower_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/cornflower/standing_cornflower_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/cornflower/standing_cornflower_pot_grown.json deleted file mode 100644 index 7b4e0d9f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/cornflower/standing_cornflower_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/cornflower_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/dandelion/dandelion_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/dandelion/dandelion_pot.json deleted file mode 100644 index d9e91ac0..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/dandelion/dandelion_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/dandelion_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/dandelion/dandelion_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/dandelion/dandelion_pot_grown.json deleted file mode 100644 index 85ba4031..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/dandelion/dandelion_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/dandelion_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/dandelion/standing_dandelion_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/dandelion/standing_dandelion_pot.json deleted file mode 100644 index 5443ea7e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/dandelion/standing_dandelion_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/dandelion_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/dandelion/standing_dandelion_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/dandelion/standing_dandelion_pot_grown.json deleted file mode 100644 index 1d2679f5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/dandelion/standing_dandelion_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/dandelion_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/fern/fern_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/fern/fern_pot.json deleted file mode 100644 index aa507563..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/fern/fern_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/fern_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/fern/fern_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/fern/fern_pot_grown.json deleted file mode 100644 index 74ed621c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/fern/fern_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/fern_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/fern/standing_fern_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/fern/standing_fern_pot.json deleted file mode 100644 index fe8f23d5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/fern/standing_fern_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/fern_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/fern/standing_fern_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/fern/standing_fern_pot_grown.json deleted file mode 100644 index 029643d5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/fern/standing_fern_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/fern_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glow_lichen/glow_lichen_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glow_lichen/glow_lichen_pot.json deleted file mode 100644 index cbe388b3..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glow_lichen/glow_lichen_pot.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_flat", - "textures": { - "1": "beautify:block/pots/glow_lichen_pot", - "2": "beautify:block/pots/glow_lichen_pot_overlay", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glow_lichen/glow_lichen_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glow_lichen/glow_lichen_pot_grown.json deleted file mode 100644 index 31d4578c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glow_lichen/glow_lichen_pot_grown.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_flat_grown", - "textures": { - "1": "beautify:block/pots/glow_lichen_pot_grown", - "2": "beautify:block/pots/glow_lichen_pot_overlay_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glow_lichen/standing_glow_lichen_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glow_lichen/standing_glow_lichen_pot.json deleted file mode 100644 index e3f2e987..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glow_lichen/standing_glow_lichen_pot.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_flat", - "textures": { - "1": "beautify:block/pots/glow_lichen_pot", - "2": "beautify:block/pots/glow_lichen_pot_overlay", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glow_lichen/standing_glow_lichen_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glow_lichen/standing_glow_lichen_pot_grown.json deleted file mode 100644 index 0ae229dd..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glow_lichen/standing_glow_lichen_pot_grown.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_flat_grown", - "textures": { - "1": "beautify:block/pots/glow_lichen_pot_grown", - "2": "beautify:block/pots/glow_lichen_pot_overlay_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glowberry/glowberry_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glowberry/glowberry_pot.json deleted file mode 100644 index 8a661098..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glowberry/glowberry_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/glowberry_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glowberry/glowberry_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glowberry/glowberry_pot_grown.json deleted file mode 100644 index f24bf07a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glowberry/glowberry_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/glowberry_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glowberry/standing_glowberry_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glowberry/standing_glowberry_pot.json deleted file mode 100644 index c1674825..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glowberry/standing_glowberry_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/glowberry_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glowberry/standing_glowberry_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glowberry/standing_glowberry_pot_grown.json deleted file mode 100644 index d75cea6c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/glowberry/standing_glowberry_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/glowberry_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/grass/grass_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/grass/grass_pot.json deleted file mode 100644 index eb57d271..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/grass/grass_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/grass_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/grass/grass_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/grass/grass_pot_grown.json deleted file mode 100644 index bd98ef2b..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/grass/grass_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/grass_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/grass/standing_grass_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/grass/standing_grass_pot.json deleted file mode 100644 index f4df2dc7..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/grass/standing_grass_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/grass_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/grass/standing_grass_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/grass/standing_grass_pot_grown.json deleted file mode 100644 index f8bcd487..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/grass/standing_grass_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/grass_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lilac/lilac_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lilac/lilac_pot.json deleted file mode 100644 index 33a98824..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lilac/lilac_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/lilac_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lilac/lilac_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lilac/lilac_pot_grown.json deleted file mode 100644 index 27a99897..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lilac/lilac_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/lilac_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lilac/standing_lilac_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lilac/standing_lilac_pot.json deleted file mode 100644 index 030bff74..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lilac/standing_lilac_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/lilac_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lilac/standing_lilac_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lilac/standing_lilac_pot_grown.json deleted file mode 100644 index 9746ae86..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lilac/standing_lilac_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/lilac_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lily/lily_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lily/lily_pot.json deleted file mode 100644 index 5cc2c455..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lily/lily_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/lily_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lily/lily_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lily/lily_pot_grown.json deleted file mode 100644 index 627958d3..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lily/lily_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/lily_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lily/standing_lily_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lily/standing_lily_pot.json deleted file mode 100644 index 10eefea3..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lily/standing_lily_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/lily_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lily/standing_lily_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lily/standing_lily_pot_grown.json deleted file mode 100644 index e9295f83..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/lily/standing_lily_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/lily_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orange_tulip/orange_tulip_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orange_tulip/orange_tulip_pot.json deleted file mode 100644 index d6274cdc..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orange_tulip/orange_tulip_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/orange_tulip_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orange_tulip/orange_tulip_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orange_tulip/orange_tulip_pot_grown.json deleted file mode 100644 index 8325a303..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orange_tulip/orange_tulip_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/orange_tulip_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orange_tulip/standing_orange_tulip_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orange_tulip/standing_orange_tulip_pot.json deleted file mode 100644 index 71df5fe4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orange_tulip/standing_orange_tulip_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/orange_tulip_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orange_tulip/standing_orange_tulip_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orange_tulip/standing_orange_tulip_pot_grown.json deleted file mode 100644 index 14d9d7a6..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orange_tulip/standing_orange_tulip_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/orange_tulip_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orchid/orchid_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orchid/orchid_pot.json deleted file mode 100644 index 56c2f3e5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orchid/orchid_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/orchid_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orchid/orchid_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orchid/orchid_pot_grown.json deleted file mode 100644 index d0add6f1..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orchid/orchid_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/orchid_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orchid/standing_orchid_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orchid/standing_orchid_pot.json deleted file mode 100644 index 2d8c7a6d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orchid/standing_orchid_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/orchid_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orchid/standing_orchid_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orchid/standing_orchid_pot_grown.json deleted file mode 100644 index b141570e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/orchid/standing_orchid_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/orchid_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/oxeye_daisy/oxeye_daisy_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/oxeye_daisy/oxeye_daisy_pot.json deleted file mode 100644 index 3a21a0b5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/oxeye_daisy/oxeye_daisy_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/oxeye_daisy_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/oxeye_daisy/oxeye_daisy_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/oxeye_daisy/oxeye_daisy_pot_grown.json deleted file mode 100644 index 4eceba9f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/oxeye_daisy/oxeye_daisy_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/oxeye_daisy_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/oxeye_daisy/standing_oxeye_daisy_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/oxeye_daisy/standing_oxeye_daisy_pot.json deleted file mode 100644 index aaffb1f4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/oxeye_daisy/standing_oxeye_daisy_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/oxeye_daisy_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/oxeye_daisy/standing_oxeye_daisy_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/oxeye_daisy/standing_oxeye_daisy_pot_grown.json deleted file mode 100644 index c732d22f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/oxeye_daisy/standing_oxeye_daisy_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/oxeye_daisy_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/peony/peony_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/peony/peony_pot.json deleted file mode 100644 index dc4ab05d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/peony/peony_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/peony_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/peony/peony_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/peony/peony_pot_grown.json deleted file mode 100644 index 25ce436e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/peony/peony_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/peony_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/peony/standing_peony_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/peony/standing_peony_pot.json deleted file mode 100644 index 316ff741..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/peony/standing_peony_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/peony_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/peony/standing_peony_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/peony/standing_peony_pot_grown.json deleted file mode 100644 index be06830d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/peony/standing_peony_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/peony_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/pink_tulip/pink_tulip_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/pink_tulip/pink_tulip_pot.json deleted file mode 100644 index 46c4b49f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/pink_tulip/pink_tulip_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/pink_tulip_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/pink_tulip/pink_tulip_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/pink_tulip/pink_tulip_pot_grown.json deleted file mode 100644 index 236fd631..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/pink_tulip/pink_tulip_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/pink_tulip_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/pink_tulip/standing_pink_tulip_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/pink_tulip/standing_pink_tulip_pot.json deleted file mode 100644 index 76ab4cea..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/pink_tulip/standing_pink_tulip_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/pink_tulip_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/pink_tulip/standing_pink_tulip_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/pink_tulip/standing_pink_tulip_pot_grown.json deleted file mode 100644 index bdfda2ca..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/pink_tulip/standing_pink_tulip_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/pink_tulip_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/poppy/poppy_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/poppy/poppy_pot.json deleted file mode 100644 index 564027bc..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/poppy/poppy_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/poppy_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/poppy/poppy_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/poppy/poppy_pot_grown.json deleted file mode 100644 index 051dca79..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/poppy/poppy_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/poppy_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/poppy/standing_poppy_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/poppy/standing_poppy_pot.json deleted file mode 100644 index 7a40f6c8..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/poppy/standing_poppy_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/poppy_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/poppy/standing_poppy_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/poppy/standing_poppy_pot_grown.json deleted file mode 100644 index 9a3c73fa..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/poppy/standing_poppy_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/poppy_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/red_tulip/red_tulip_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/red_tulip/red_tulip_pot.json deleted file mode 100644 index 52117c6d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/red_tulip/red_tulip_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/red_tulip_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/red_tulip/red_tulip_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/red_tulip/red_tulip_pot_grown.json deleted file mode 100644 index 7bfb92ec..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/red_tulip/red_tulip_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/red_tulip_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/red_tulip/standing_red_tulip_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/red_tulip/standing_red_tulip_pot.json deleted file mode 100644 index c97a9b5e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/red_tulip/standing_red_tulip_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/red_tulip_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/red_tulip/standing_red_tulip_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/red_tulip/standing_red_tulip_pot_grown.json deleted file mode 100644 index 07c16d70..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/red_tulip/standing_red_tulip_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/red_tulip_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/rose/rose_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/rose/rose_pot.json deleted file mode 100644 index 4869982c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/rose/rose_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/rose_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/rose/rose_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/rose/rose_pot_grown.json deleted file mode 100644 index a0006a6b..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/rose/rose_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/rose_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/rose/standing_rose_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/rose/standing_rose_pot.json deleted file mode 100644 index 9b2e9192..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/rose/standing_rose_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/rose_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/rose/standing_rose_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/rose/standing_rose_pot_grown.json deleted file mode 100644 index a73b00bc..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/rose/standing_rose_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/rose_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/sunflower/standing_sunflower_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/sunflower/standing_sunflower_pot.json deleted file mode 100644 index 47c8791a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/sunflower/standing_sunflower_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/sunflower_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/sunflower/standing_sunflower_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/sunflower/standing_sunflower_pot_grown.json deleted file mode 100644 index 9ec2f03e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/sunflower/standing_sunflower_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/sunflower_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/sunflower/sunflower_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/sunflower/sunflower_pot.json deleted file mode 100644 index a3e8ce7c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/sunflower/sunflower_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/sunflower_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/sunflower/sunflower_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/sunflower/sunflower_pot_grown.json deleted file mode 100644 index 2fa7d2c5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/sunflower/sunflower_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/sunflower_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/twisting_vines/standing_twisting_vines_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/twisting_vines/standing_twisting_vines_pot.json deleted file mode 100644 index 8697c721..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/twisting_vines/standing_twisting_vines_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/twisting_vines_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/twisting_vines/standing_twisting_vines_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/twisting_vines/standing_twisting_vines_pot_grown.json deleted file mode 100644 index b69d0828..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/twisting_vines/standing_twisting_vines_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/twisting_vines_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/twisting_vines/twisting_vines_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/twisting_vines/twisting_vines_pot.json deleted file mode 100644 index ecb9ce92..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/twisting_vines/twisting_vines_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/twisting_vines_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/twisting_vines/twisting_vines_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/twisting_vines/twisting_vines_pot_grown.json deleted file mode 100644 index a98fc1c4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/twisting_vines/twisting_vines_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/twisting_vines_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/vine/standing_vine_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/vine/standing_vine_pot.json deleted file mode 100644 index 58cc7a81..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/vine/standing_vine_pot.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_flat", - "textures": { - "1": "beautify:block/pots/vine_pot", - "2": "beautify:block/pots/vine_pot_overlay", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/vine/standing_vine_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/vine/standing_vine_pot_grown.json deleted file mode 100644 index 8b37f6a4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/vine/standing_vine_pot_grown.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_flat_grown", - "textures": { - "1": "beautify:block/pots/vine_pot_grown", - "2": "beautify:block/pots/vine_pot_overlay_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/vine/vine_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/vine/vine_pot.json deleted file mode 100644 index 6b443da4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/vine/vine_pot.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_flat", - "textures": { - "1": "beautify:block/pots/vine_pot", - "2": "beautify:block/pots/vine_pot_overlay", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/vine/vine_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/vine/vine_pot_grown.json deleted file mode 100644 index 71a967e5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/vine/vine_pot_grown.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_flat_grown", - "textures": { - "1": "beautify:block/pots/vine_pot_grown", - "2": "beautify:block/pots/vine_pot_overlay_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/weeping_vines/standing_weeping_vines_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/weeping_vines/standing_weeping_vines_pot.json deleted file mode 100644 index 69e2da44..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/weeping_vines/standing_weeping_vines_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/weeping_vines_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/weeping_vines/standing_weeping_vines_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/weeping_vines/standing_weeping_vines_pot_grown.json deleted file mode 100644 index 84dacbbf..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/weeping_vines/standing_weeping_vines_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/weeping_vines_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/weeping_vines/weeping_vines_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/weeping_vines/weeping_vines_pot.json deleted file mode 100644 index ca89723d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/weeping_vines/weeping_vines_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/weeping_vines_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/weeping_vines/weeping_vines_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/weeping_vines/weeping_vines_pot_grown.json deleted file mode 100644 index fc7abf05..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/weeping_vines/weeping_vines_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/weeping_vines_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/white_tulip/standing_white_tulip_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/white_tulip/standing_white_tulip_pot.json deleted file mode 100644 index 7858b694..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/white_tulip/standing_white_tulip_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/white_tulip_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/white_tulip/standing_white_tulip_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/white_tulip/standing_white_tulip_pot_grown.json deleted file mode 100644 index 8bdf27b1..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/white_tulip/standing_white_tulip_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/white_tulip_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/white_tulip/white_tulip_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/white_tulip/white_tulip_pot.json deleted file mode 100644 index 84f20838..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/white_tulip/white_tulip_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/white_tulip_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/white_tulip/white_tulip_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/white_tulip/white_tulip_pot_grown.json deleted file mode 100644 index 1b626a3a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/white_tulip/white_tulip_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/white_tulip_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/wither_rose/standing_wither_rose_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/wither_rose/standing_wither_rose_pot.json deleted file mode 100644 index 3240c4b4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/wither_rose/standing_wither_rose_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot", - "textures": { - "0": "beautify:block/pots/wither_rose_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/wither_rose/standing_wither_rose_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/wither_rose/standing_wither_rose_pot_grown.json deleted file mode 100644 index 9dcac576..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/wither_rose/standing_wither_rose_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/standing_pot_grown", - "textures": { - "0": "beautify:block/pots/wither_rose_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/wither_rose/wither_rose_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/wither_rose/wither_rose_pot.json deleted file mode 100644 index 0a454ea2..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/wither_rose/wither_rose_pot.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot", - "textures": { - "0": "beautify:block/pots/wither_rose_pot", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/wither_rose/wither_rose_pot_grown.json b/mod/beautify/src/main/resources/assets/beautify/models/block/pots/wither_rose/wither_rose_pot_grown.json deleted file mode 100644 index 8d170cce..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/pots/wither_rose/wither_rose_pot_grown.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot_grown", - "textures": { - "0": "beautify:block/pots/wither_rose_pot_grown", - "particle": "minecraft:block/terracotta" - }, - "render_type": "cutout" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/rope.json b/mod/beautify/src/main/resources/assets/beautify/models/block/rope.json deleted file mode 100644 index 628df5aa..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/rope.json +++ /dev/null @@ -1,106 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [32, 32], - "textures": { - "0": "beautify:block/rope_texture", - "particle": "beautify:block/rope_texture" - }, - "render_type": "cutout", - "elements": [ - { - "from": [7, 13, 9], - "to": [7, 14, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 6, 9]}, - "faces": { - "north": {"uv": [3.5, 0.5, 3.5, 1], "texture": "#0"}, - "east": {"uv": [3, 0.5, 3.5, 1], "texture": "#0"}, - "south": {"uv": [4, 0.5, 4, 1], "texture": "#0"}, - "west": {"uv": [3.5, 0.5, 4, 1], "texture": "#0"}, - "up": {"uv": [3.5, 0.5, 3.5, 0], "texture": "#0"}, - "down": {"uv": [3.5, 0, 3.5, 0.5], "texture": "#0"} - } - }, - { - "from": [7, 0, 7], - "to": [9, 16, 9], - "faces": { - "north": {"uv": [1, 1, 2, 9], "texture": "#0"}, - "east": {"uv": [0, 1, 1, 9], "texture": "#0"}, - "south": {"uv": [3, 1, 4, 9], "texture": "#0"}, - "west": {"uv": [2, 1, 3, 9], "texture": "#0"}, - "up": {"uv": [2, 1, 1, 0], "texture": "#0"}, - "down": {"uv": [3, 0, 2, 1], "texture": "#0"} - } - }, - { - "from": [6, 1, 8], - "to": [7, 2, 8], - "faces": { - "north": {"uv": [3, 0.5, 3.5, 1], "texture": "#0"}, - "east": {"uv": [3, 0.5, 3, 1], "texture": "#0"}, - "south": {"uv": [3.5, 0.5, 4, 1], "texture": "#0"}, - "west": {"uv": [3.5, 0.5, 3.5, 1], "texture": "#0"}, - "up": {"uv": [3.5, 0.5, 3, 0.5], "texture": "#0"}, - "down": {"uv": [4, 0.5, 3.5, 0.5], "texture": "#0"} - } - }, - { - "from": [6, 9, 7], - "to": [7, 10, 7], - "faces": { - "north": {"uv": [3, 0, 3.5, 0.5], "texture": "#0"}, - "east": {"uv": [3, 0, 3, 0.5], "texture": "#0"}, - "south": {"uv": [3.5, 0, 4, 0.5], "texture": "#0"}, - "west": {"uv": [3.5, 0, 3.5, 0.5], "texture": "#0"}, - "up": {"uv": [3.5, 0, 3, 0], "texture": "#0"}, - "down": {"uv": [4, 0, 3.5, 0], "texture": "#0"} - } - }, - { - "from": [9, 6, 9], - "to": [10, 7, 9], - "faces": { - "north": {"uv": [0, 0, 0.5, 0.5], "texture": "#0"}, - "east": {"uv": [0, 0, 0, 0.5], "texture": "#0"}, - "south": {"uv": [0.5, 0, 1, 0.5], "texture": "#0"}, - "west": {"uv": [0.5, 0, 0.5, 0.5], "texture": "#0"}, - "up": {"uv": [0.5, 0, 0, 0], "texture": "#0"}, - "down": {"uv": [1, 0, 0.5, 0], "texture": "#0"} - } - }, - { - "from": [9, 3, 6], - "to": [9, 4, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 6, 9]}, - "faces": { - "north": {"uv": [3.5, 0.5, 3.5, 1], "texture": "#0"}, - "east": {"uv": [3, 0.5, 3.5, 1], "texture": "#0"}, - "south": {"uv": [4, 0.5, 4, 1], "texture": "#0"}, - "west": {"uv": [3.5, 0.5, 4, 1], "texture": "#0"}, - "up": {"uv": [3.5, 0.5, 3.5, 0], "texture": "#0"}, - "down": {"uv": [3.5, 0, 3.5, 0.5], "texture": "#0"} - } - }, - { - "from": [9, 10, 6], - "to": [9, 11, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [9, 6, 9]}, - "faces": { - "north": {"uv": [0.5, 0.5, 0.5, 1], "texture": "#0"}, - "east": {"uv": [0, 0.5, 0.5, 1], "texture": "#0"}, - "south": {"uv": [1, 0.5, 1, 1], "texture": "#0"}, - "west": {"uv": [0.5, 0.5, 1, 1], "texture": "#0"}, - "up": {"uv": [0.5, 0.5, 0.5, 0], "texture": "#0"}, - "down": {"uv": [0.5, 0, 0.5, 0.5], "texture": "#0"} - } - } - ], - "groups": [ - { - "name": "VoxelShapes", - "origin": [8, 8, 8], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis.json deleted file mode 100644 index 7b7f65d0..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/acacia_log", - "particle": "block/acacia_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#0"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#0"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#0"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [4.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "translation": [-5.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [6.75, -1.25, 2] - }, - "firstperson_lefthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [3.75, -1.5, -12] - }, - "ground": { - "translation": [4.75, 2.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "gui": { - "rotation": [32.02, 83.55, -42.04], - "translation": [0.5, -1.25, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "rotation": [0, 90, 0], - "translation": [0, 0, -14.25] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, 0, -8.25] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_lichen.json deleted file mode 100644 index 25bd245e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_lichen.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lichen_back", - "4": "minecraft:block/acacia_log", - "5": "beautify:block/trellis_lichen_front", - "particle": "minecraft:block/acacia_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_lilac.json deleted file mode 100644 index 97dba82d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_lilac.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lilac_back", - "4": "minecraft:block/acacia_log", - "5": "beautify:block/trellis_lilac_front", - "particle": "minecraft:block/acacia_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_peony.json deleted file mode 100644 index 01a4a95f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_peony.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_peony_back", - "4": "minecraft:block/acacia_log", - "5": "beautify:block/trellis_peony_front", - "particle": "minecraft:block/acacia_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_rose.json deleted file mode 100644 index ea4d9388..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_rose.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_rose_back", - "4": "minecraft:block/acacia_log", - "5": "beautify:block/trellis_rose_front", - "particle": "minecraft:block/acacia_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_sunflower.json deleted file mode 100644 index 5e83ab16..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_sunflower.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_sunflower_back", - "4": "minecraft:block/acacia_log", - "5": "beautify:block/trellis_sunflower_front", - "particle": "minecraft:block/acacia_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_twisting_vines.json deleted file mode 100644 index 91cf8c4a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_twisting_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_twisting_vines_back", - "4": "minecraft:block/acacia_log", - "5": "beautify:block/trellis_twisting_vines_front", - "particle": "minecraft:block/acacia_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_vine.json deleted file mode 100644 index 6ab30895..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_vine.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_vine_back", - "4": "minecraft:block/acacia_log", - "5": "beautify:block/trellis_vine_front", - "particle": "minecraft:block/acacia_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_weeping_vines.json deleted file mode 100644 index 3724ad2d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/closed_trellis_weeping_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_weeping_vines_back", - "4": "minecraft:block/acacia_log", - "5": "beautify:block/trellis_weeping_vines_front", - "particle": "minecraft:block/acacia_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis.json deleted file mode 100644 index 7185083d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "minecraft:block/acacia_log", - "particle": "minecraft:block/acacia_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#0"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#0"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#0"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_lichen.json deleted file mode 100644 index c69d0fd0..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_lichen.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/acacia_log", - "5": "beautify:block/trellis_lichen_back", - "6": "beautify:block/trellis_lichen_front", - "7": "beautify:block/trellis_lichen_hanging", - "particle": "minecraft:block/acacia_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_lilac.json deleted file mode 100644 index 57cbfba7..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_lilac.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/acacia_log", - "5": "beautify:block/trellis_lilac_back", - "6": "beautify:block/trellis_lilac_front", - "7": "beautify:block/trellis_lilac_hanging", - "particle": "minecraft:block/acacia_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_peony.json deleted file mode 100644 index 17e3d70c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_peony.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/acacia_log", - "5": "beautify:block/trellis_peony_back", - "6": "beautify:block/trellis_peony_front", - "7": "beautify:block/trellis_peony_hanging", - "particle": "minecraft:block/acacia_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_rose.json deleted file mode 100644 index 2f796785..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_rose.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/acacia_log", - "5": "beautify:block/trellis_rose_back", - "6": "beautify:block/trellis_rose_front", - "7": "beautify:block/trellis_rose_hanging", - "particle": "minecraft:block/acacia_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_sunflower.json deleted file mode 100644 index 4192f9b4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_sunflower.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/acacia_log", - "5": "beautify:block/trellis_sunflower_back", - "6": "beautify:block/trellis_sunflower_front", - "7": "beautify:block/trellis_sunflower_hanging", - "particle": "minecraft:block/acacia_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_twisting_vines.json deleted file mode 100644 index 999d9502..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_twisting_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/acacia_log", - "5": "beautify:block/trellis_twisting_vines_back", - "6": "beautify:block/trellis_twisting_vines_front", - "7": "beautify:block/trellis_twisting_vines_hanging", - "particle": "minecraft:block/acacia_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_vine.json deleted file mode 100644 index 284e8ec1..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_vine.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/acacia_log", - "5": "beautify:block/trellis_vine_back", - "6": "beautify:block/trellis_vine_front", - "7": "beautify:block/trellis_vine_hanging", - "particle": "minecraft:block/acacia_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_weeping_vines.json deleted file mode 100644 index 56200367..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/acacia/open_trellis_weeping_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/acacia_log", - "5": "beautify:block/trellis_weeping_vines_back", - "6": "beautify:block/trellis_weeping_vines_front", - "7": "beautify:block/trellis_weeping_vines_hanging", - "particle": "minecraft:block/acacia_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis.json deleted file mode 100644 index da065fd4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/birch_log", - "particle": "minecraft:block/birch_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "east": {"uv": [3, 16, 5, 0], "texture": "#4"}, - "south": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "west": {"uv": [3, 0, 5, 16], "texture": "#4"}, - "up": {"uv": [3, 0, 4, 2], "texture": "#4"}, - "down": {"uv": [3, 0, 4, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "east": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "south": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "west": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "up": {"uv": [1, 0, 2, 2], "texture": "#4"}, - "down": {"uv": [1, 0, 2, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "east": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "south": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "west": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "up": {"uv": [13, 2, 14, 0], "texture": "#4"}, - "down": {"uv": [13, 2, 14, 0], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [12, 0, 13, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [12, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [12, 0, 13, 2], "texture": "#4"}, - "west": {"uv": [12, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [12, 0, 13, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [12, 0, 13, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [7, 0, 8, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [7, 0, 9, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [7, 0, 8, 2], "texture": "#4"}, - "west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [7, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [7, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [4.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "translation": [-5.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [6.75, -1.25, 2] - }, - "firstperson_lefthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [3.75, -1.5, -12] - }, - "ground": { - "translation": [4.75, 2.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "gui": { - "rotation": [32.02, 83.55, -42.04], - "translation": [0.5, -1.25, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "rotation": [0, 90, 0], - "translation": [0, 0, -14.25] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, 0, -8.25] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_lichen.json deleted file mode 100644 index 36197e7e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_lichen.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lichen_back", - "4": "minecraft:block/birch_log", - "5": "beautify:block/trellis_lichen_front", - "particle": "minecraft:block/birch_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "east": {"uv": [3, 16, 5, 0], "texture": "#4"}, - "south": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "west": {"uv": [3, 0, 5, 16], "texture": "#4"}, - "up": {"uv": [3, 0, 4, 2], "texture": "#4"}, - "down": {"uv": [3, 0, 4, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "east": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "south": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "west": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "up": {"uv": [1, 0, 2, 2], "texture": "#4"}, - "down": {"uv": [1, 0, 2, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "east": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "south": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "west": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "up": {"uv": [13, 2, 14, 0], "texture": "#4"}, - "down": {"uv": [13, 2, 14, 0], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [12, 0, 13, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [12, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [12, 0, 13, 2], "texture": "#4"}, - "west": {"uv": [12, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [12, 0, 13, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [12, 0, 13, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [7, 0, 8, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [7, 0, 9, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [7, 0, 8, 2], "texture": "#4"}, - "west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [7, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [7, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_lilac.json deleted file mode 100644 index ab8a8540..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_lilac.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lilac_back", - "4": "minecraft:block/birch_log", - "5": "beautify:block/trellis_lilac_front", - "particle": "minecraft:block/birch_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "east": {"uv": [3, 16, 5, 0], "texture": "#4"}, - "south": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "west": {"uv": [3, 0, 5, 16], "texture": "#4"}, - "up": {"uv": [3, 0, 4, 2], "texture": "#4"}, - "down": {"uv": [3, 0, 4, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "east": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "south": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "west": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "up": {"uv": [1, 0, 2, 2], "texture": "#4"}, - "down": {"uv": [1, 0, 2, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "east": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "south": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "west": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "up": {"uv": [13, 2, 14, 0], "texture": "#4"}, - "down": {"uv": [13, 2, 14, 0], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [12, 0, 13, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [12, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [12, 0, 13, 2], "texture": "#4"}, - "west": {"uv": [12, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [12, 0, 13, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [12, 0, 13, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [7, 0, 8, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [7, 0, 9, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [7, 0, 8, 2], "texture": "#4"}, - "west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [7, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [7, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_peony.json deleted file mode 100644 index 20f5af8e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_peony.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_peony_back", - "4": "minecraft:block/birch_log", - "5": "beautify:block/trellis_peony_front", - "particle": "minecraft:block/birch_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "east": {"uv": [3, 16, 5, 0], "texture": "#4"}, - "south": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "west": {"uv": [3, 0, 5, 16], "texture": "#4"}, - "up": {"uv": [3, 0, 4, 2], "texture": "#4"}, - "down": {"uv": [3, 0, 4, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "east": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "south": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "west": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "up": {"uv": [1, 0, 2, 2], "texture": "#4"}, - "down": {"uv": [1, 0, 2, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "east": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "south": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "west": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "up": {"uv": [13, 2, 14, 0], "texture": "#4"}, - "down": {"uv": [13, 2, 14, 0], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [12, 0, 13, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [12, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [12, 0, 13, 2], "texture": "#4"}, - "west": {"uv": [12, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [12, 0, 13, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [12, 0, 13, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [7, 0, 8, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [7, 0, 9, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [7, 0, 8, 2], "texture": "#4"}, - "west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [7, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [7, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_rose.json deleted file mode 100644 index 953df205..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_rose.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_rose_back", - "4": "minecraft:block/birch_log", - "5": "beautify:block/trellis_rose_front", - "particle": "minecraft:block/birch_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "east": {"uv": [3, 16, 5, 0], "texture": "#4"}, - "south": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "west": {"uv": [3, 0, 5, 16], "texture": "#4"}, - "up": {"uv": [3, 0, 4, 2], "texture": "#4"}, - "down": {"uv": [3, 0, 4, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "east": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "south": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "west": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "up": {"uv": [1, 0, 2, 2], "texture": "#4"}, - "down": {"uv": [1, 0, 2, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "east": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "south": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "west": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "up": {"uv": [13, 2, 14, 0], "texture": "#4"}, - "down": {"uv": [13, 2, 14, 0], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [12, 0, 13, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [12, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [12, 0, 13, 2], "texture": "#4"}, - "west": {"uv": [12, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [12, 0, 13, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [12, 0, 13, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [7, 0, 8, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [7, 0, 9, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [7, 0, 8, 2], "texture": "#4"}, - "west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [7, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [7, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_sunflower.json deleted file mode 100644 index 5febba05..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_sunflower.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_sunflower_back", - "4": "minecraft:block/birch_log", - "5": "beautify:block/trellis_sunflower_front", - "particle": "minecraft:block/birch_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "east": {"uv": [3, 16, 5, 0], "texture": "#4"}, - "south": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "west": {"uv": [3, 0, 5, 16], "texture": "#4"}, - "up": {"uv": [3, 0, 4, 2], "texture": "#4"}, - "down": {"uv": [3, 0, 4, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "east": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "south": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "west": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "up": {"uv": [1, 0, 2, 2], "texture": "#4"}, - "down": {"uv": [1, 0, 2, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "east": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "south": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "west": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "up": {"uv": [13, 2, 14, 0], "texture": "#4"}, - "down": {"uv": [13, 2, 14, 0], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [12, 0, 13, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [12, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [12, 0, 13, 2], "texture": "#4"}, - "west": {"uv": [12, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [12, 0, 13, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [12, 0, 13, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [7, 0, 8, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [7, 0, 9, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [7, 0, 8, 2], "texture": "#4"}, - "west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [7, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [7, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_twisting_vines.json deleted file mode 100644 index 8bd1e3f5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_twisting_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_twisting_vines_back", - "4": "minecraft:block/birch_log", - "5": "beautify:block/trellis_twisting_vines_front", - "particle": "minecraft:block/birch_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "east": {"uv": [3, 16, 5, 0], "texture": "#4"}, - "south": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "west": {"uv": [3, 0, 5, 16], "texture": "#4"}, - "up": {"uv": [3, 0, 4, 2], "texture": "#4"}, - "down": {"uv": [3, 0, 4, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "east": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "south": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "west": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "up": {"uv": [1, 0, 2, 2], "texture": "#4"}, - "down": {"uv": [1, 0, 2, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "east": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "south": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "west": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "up": {"uv": [13, 2, 14, 0], "texture": "#4"}, - "down": {"uv": [13, 2, 14, 0], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [12, 0, 13, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [12, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [12, 0, 13, 2], "texture": "#4"}, - "west": {"uv": [12, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [12, 0, 13, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [12, 0, 13, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [7, 0, 8, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [7, 0, 9, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [7, 0, 8, 2], "texture": "#4"}, - "west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [7, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [7, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_vine.json deleted file mode 100644 index 6c9a27c2..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_vine.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_vine_back", - "4": "minecraft:block/birch_log", - "5": "beautify:block/trellis_vine_front", - "particle": "minecraft:block/birch_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "east": {"uv": [3, 16, 5, 0], "texture": "#4"}, - "south": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "west": {"uv": [3, 0, 5, 16], "texture": "#4"}, - "up": {"uv": [3, 0, 4, 2], "texture": "#4"}, - "down": {"uv": [3, 0, 4, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "east": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "south": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "west": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "up": {"uv": [1, 0, 2, 2], "texture": "#4"}, - "down": {"uv": [1, 0, 2, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "east": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "south": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "west": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "up": {"uv": [13, 2, 14, 0], "texture": "#4"}, - "down": {"uv": [13, 2, 14, 0], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [12, 0, 13, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [12, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [12, 0, 13, 2], "texture": "#4"}, - "west": {"uv": [12, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [12, 0, 13, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [12, 0, 13, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [7, 0, 8, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [7, 0, 9, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [7, 0, 8, 2], "texture": "#4"}, - "west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [7, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [7, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_weeping_vines.json deleted file mode 100644 index 1e6707ae..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/closed_trellis_weeping_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_weeping_vines_back", - "4": "minecraft:block/birch_log", - "5": "beautify:block/trellis_weeping_vines_front", - "particle": "minecraft:block/birch_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "east": {"uv": [3, 16, 5, 0], "texture": "#4"}, - "south": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "west": {"uv": [3, 0, 5, 16], "texture": "#4"}, - "up": {"uv": [3, 0, 4, 2], "texture": "#4"}, - "down": {"uv": [3, 0, 4, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "east": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "south": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "west": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "up": {"uv": [1, 0, 2, 2], "texture": "#4"}, - "down": {"uv": [1, 0, 2, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "east": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "south": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "west": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "up": {"uv": [13, 2, 14, 0], "texture": "#4"}, - "down": {"uv": [13, 2, 14, 0], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [12, 0, 13, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [12, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [12, 0, 13, 2], "texture": "#4"}, - "west": {"uv": [12, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [12, 0, 13, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [12, 0, 13, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [7, 0, 8, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [7, 0, 9, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [7, 0, 8, 2], "texture": "#4"}, - "west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [7, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [7, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis.json deleted file mode 100644 index 61768e90..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/birch_log", - "particle": "minecraft:block/birch_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [3, 0, 5, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [13, 16, 14, 0], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 16, 14, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 16, 15, 0], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [6, 0, 7, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [6, 0, 7, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [6, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [6, 0, 8, 16], "texture": "#4"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_lichen.json deleted file mode 100644 index 49ffc9fb..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_lichen.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/birch_log", - "5": "beautify:block/trellis_lichen_back", - "6": "beautify:block/trellis_lichen_front", - "7": "beautify:block/trellis_lichen_hanging", - "particle": "minecraft:block/birch_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [3, 0, 5, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [13, 16, 14, 0], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 16, 14, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 16, 15, 0], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [6, 0, 7, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [6, 0, 7, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [6, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [6, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_lilac.json deleted file mode 100644 index cbb3f2bb..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_lilac.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/birch_log", - "5": "beautify:block/trellis_lilac_back", - "6": "beautify:block/trellis_lilac_front", - "7": "beautify:block/trellis_lilac_hanging", - "particle": "minecraft:block/birch_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [3, 0, 5, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [13, 16, 14, 0], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 16, 14, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 16, 15, 0], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [6, 0, 7, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [6, 0, 7, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [6, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [6, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_peony.json deleted file mode 100644 index 40e10bec..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_peony.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/birch_log", - "5": "beautify:block/trellis_peony_back", - "6": "beautify:block/trellis_peony_front", - "7": "beautify:block/trellis_peony_hanging", - "particle": "minecraft:block/birch_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [3, 0, 5, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [13, 16, 14, 0], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 16, 14, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 16, 15, 0], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [6, 0, 7, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [6, 0, 7, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [6, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [6, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_rose.json deleted file mode 100644 index 06ce5e07..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_rose.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/birch_log", - "5": "beautify:block/trellis_rose_back", - "6": "beautify:block/trellis_rose_front", - "7": "beautify:block/trellis_rose_hanging", - "particle": "minecraft:block/birch_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [3, 0, 5, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [13, 16, 14, 0], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 16, 14, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 16, 15, 0], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [6, 0, 7, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [6, 0, 7, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [6, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [6, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_sunflower.json deleted file mode 100644 index c6e74316..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_sunflower.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/birch_log", - "5": "beautify:block/trellis_sunflower_back", - "6": "beautify:block/trellis_sunflower_front", - "7": "beautify:block/trellis_sunflower_hanging", - "particle": "minecraft:block/birch_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [3, 0, 5, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [13, 16, 14, 0], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 16, 14, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 16, 15, 0], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [6, 0, 7, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [6, 0, 7, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [6, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [6, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_twisting_vines.json deleted file mode 100644 index 7b5818f9..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_twisting_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/birch_log", - "5": "beautify:block/trellis_twisting_vines_back", - "6": "beautify:block/trellis_twisting_vines_front", - "7": "beautify:block/trellis_twisting_vines_hanging", - "particle": "minecraft:block/birch_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [3, 0, 5, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [13, 16, 14, 0], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 16, 14, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 16, 15, 0], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [6, 0, 7, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [6, 0, 7, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [6, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [6, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_vine.json deleted file mode 100644 index ca71e438..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_vine.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/birch_log", - "5": "beautify:block/trellis_vine_back", - "6": "beautify:block/trellis_vine_front", - "7": "beautify:block/trellis_vine_hanging", - "particle": "minecraft:block/birch_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [3, 0, 5, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [13, 16, 14, 0], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 16, 14, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 16, 15, 0], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [6, 0, 7, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [6, 0, 7, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [6, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [6, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_weeping_vines.json deleted file mode 100644 index 955e1c65..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/birch/open_trellis_weeping_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/birch_log", - "5": "beautify:block/trellis_weeping_vines_back", - "6": "beautify:block/trellis_weeping_vines_front", - "7": "beautify:block/trellis_weeping_vines_hanging", - "particle": "minecraft:block/birch_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [3, 0, 5, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [13, 16, 14, 0], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 16, 14, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 16, 15, 0], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [6, 0, 7, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [6, 0, 7, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [6, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [6, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis.json deleted file mode 100644 index 83334af2..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/cherry_log", - "particle": "minecraft:block/cherry_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "east": {"uv": [3, 16, 5, 0], "texture": "#4"}, - "south": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "west": {"uv": [3, 0, 5, 16], "texture": "#4"}, - "up": {"uv": [3, 0, 4, 2], "texture": "#4"}, - "down": {"uv": [3, 0, 4, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "east": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "south": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "west": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "up": {"uv": [1, 0, 2, 2], "texture": "#4"}, - "down": {"uv": [1, 0, 2, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "east": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "south": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "west": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "up": {"uv": [13, 2, 14, 0], "texture": "#4"}, - "down": {"uv": [13, 2, 14, 0], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [12, 0, 13, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [12, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [12, 0, 13, 2], "texture": "#4"}, - "west": {"uv": [12, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [12, 0, 13, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [12, 0, 13, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [7, 0, 8, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [7, 0, 9, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [7, 0, 8, 2], "texture": "#4"}, - "west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [7, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [7, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [4.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "translation": [-5.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [6.75, -1.25, 2] - }, - "firstperson_lefthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [3.75, -1.5, -12] - }, - "ground": { - "translation": [4.75, 2.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "gui": { - "rotation": [32.02, 83.55, -42.04], - "translation": [0.5, -1.25, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "rotation": [0, 90, 0], - "translation": [0, 0, -14.25] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, 0, -8.25] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_lichen.json deleted file mode 100644 index 19207268..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_lichen.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lichen_back", - "4": "minecraft:block/cherry_log", - "5": "beautify:block/trellis_lichen_front", - "particle": "minecraft:block/cherry_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "east": {"uv": [3, 16, 5, 0], "texture": "#4"}, - "south": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "west": {"uv": [3, 0, 5, 16], "texture": "#4"}, - "up": {"uv": [3, 0, 4, 2], "texture": "#4"}, - "down": {"uv": [3, 0, 4, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "east": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "south": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "west": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "up": {"uv": [1, 0, 2, 2], "texture": "#4"}, - "down": {"uv": [1, 0, 2, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "east": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "south": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "west": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "up": {"uv": [13, 2, 14, 0], "texture": "#4"}, - "down": {"uv": [13, 2, 14, 0], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [12, 0, 13, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [12, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [12, 0, 13, 2], "texture": "#4"}, - "west": {"uv": [12, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [12, 0, 13, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [12, 0, 13, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [7, 0, 8, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [7, 0, 9, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [7, 0, 8, 2], "texture": "#4"}, - "west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [7, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [7, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_lilac.json deleted file mode 100644 index 27de6906..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_lilac.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lilac_back", - "4": "minecraft:block/cherry_log", - "5": "beautify:block/trellis_lilac_front", - "particle": "minecraft:block/cherry_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "east": {"uv": [3, 16, 5, 0], "texture": "#4"}, - "south": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "west": {"uv": [3, 0, 5, 16], "texture": "#4"}, - "up": {"uv": [3, 0, 4, 2], "texture": "#4"}, - "down": {"uv": [3, 0, 4, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "east": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "south": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "west": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "up": {"uv": [1, 0, 2, 2], "texture": "#4"}, - "down": {"uv": [1, 0, 2, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "east": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "south": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "west": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "up": {"uv": [13, 2, 14, 0], "texture": "#4"}, - "down": {"uv": [13, 2, 14, 0], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [12, 0, 13, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [12, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [12, 0, 13, 2], "texture": "#4"}, - "west": {"uv": [12, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [12, 0, 13, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [12, 0, 13, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [7, 0, 8, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [7, 0, 9, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [7, 0, 8, 2], "texture": "#4"}, - "west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [7, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [7, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_peony.json deleted file mode 100644 index 9625b870..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_peony.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_peony_back", - "4": "minecraft:block/cherry_log", - "5": "beautify:block/trellis_peony_front", - "particle": "minecraft:block/cherry_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "east": {"uv": [3, 16, 5, 0], "texture": "#4"}, - "south": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "west": {"uv": [3, 0, 5, 16], "texture": "#4"}, - "up": {"uv": [3, 0, 4, 2], "texture": "#4"}, - "down": {"uv": [3, 0, 4, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "east": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "south": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "west": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "up": {"uv": [1, 0, 2, 2], "texture": "#4"}, - "down": {"uv": [1, 0, 2, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "east": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "south": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "west": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "up": {"uv": [13, 2, 14, 0], "texture": "#4"}, - "down": {"uv": [13, 2, 14, 0], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [12, 0, 13, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [12, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [12, 0, 13, 2], "texture": "#4"}, - "west": {"uv": [12, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [12, 0, 13, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [12, 0, 13, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [7, 0, 8, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [7, 0, 9, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [7, 0, 8, 2], "texture": "#4"}, - "west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [7, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [7, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_rose.json deleted file mode 100644 index afbb7bb1..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_rose.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_rose_back", - "4": "minecraft:block/cherry_log", - "5": "beautify:block/trellis_rose_front", - "particle": "minecraft:block/cherry_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "east": {"uv": [3, 16, 5, 0], "texture": "#4"}, - "south": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "west": {"uv": [3, 0, 5, 16], "texture": "#4"}, - "up": {"uv": [3, 0, 4, 2], "texture": "#4"}, - "down": {"uv": [3, 0, 4, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "east": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "south": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "west": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "up": {"uv": [1, 0, 2, 2], "texture": "#4"}, - "down": {"uv": [1, 0, 2, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "east": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "south": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "west": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "up": {"uv": [13, 2, 14, 0], "texture": "#4"}, - "down": {"uv": [13, 2, 14, 0], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [12, 0, 13, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [12, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [12, 0, 13, 2], "texture": "#4"}, - "west": {"uv": [12, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [12, 0, 13, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [12, 0, 13, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [7, 0, 8, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [7, 0, 9, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [7, 0, 8, 2], "texture": "#4"}, - "west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [7, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [7, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_sunflower.json deleted file mode 100644 index ccbbdfc8..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_sunflower.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_sunflower_back", - "4": "minecraft:block/cherry_log", - "5": "beautify:block/trellis_sunflower_front", - "particle": "minecraft:block/cherry_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "east": {"uv": [3, 16, 5, 0], "texture": "#4"}, - "south": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "west": {"uv": [3, 0, 5, 16], "texture": "#4"}, - "up": {"uv": [3, 0, 4, 2], "texture": "#4"}, - "down": {"uv": [3, 0, 4, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "east": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "south": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "west": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "up": {"uv": [1, 0, 2, 2], "texture": "#4"}, - "down": {"uv": [1, 0, 2, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "east": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "south": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "west": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "up": {"uv": [13, 2, 14, 0], "texture": "#4"}, - "down": {"uv": [13, 2, 14, 0], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [12, 0, 13, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [12, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [12, 0, 13, 2], "texture": "#4"}, - "west": {"uv": [12, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [12, 0, 13, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [12, 0, 13, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [7, 0, 8, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [7, 0, 9, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [7, 0, 8, 2], "texture": "#4"}, - "west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [7, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [7, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_twisting_vines.json deleted file mode 100644 index 6ce32ca2..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_twisting_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_twisting_vines_back", - "4": "minecraft:block/cherry_log", - "5": "beautify:block/trellis_twisting_vines_front", - "particle": "minecraft:block/cherry_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "east": {"uv": [3, 16, 5, 0], "texture": "#4"}, - "south": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "west": {"uv": [3, 0, 5, 16], "texture": "#4"}, - "up": {"uv": [3, 0, 4, 2], "texture": "#4"}, - "down": {"uv": [3, 0, 4, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "east": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "south": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "west": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "up": {"uv": [1, 0, 2, 2], "texture": "#4"}, - "down": {"uv": [1, 0, 2, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "east": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "south": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "west": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "up": {"uv": [13, 2, 14, 0], "texture": "#4"}, - "down": {"uv": [13, 2, 14, 0], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [12, 0, 13, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [12, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [12, 0, 13, 2], "texture": "#4"}, - "west": {"uv": [12, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [12, 0, 13, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [12, 0, 13, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [7, 0, 8, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [7, 0, 9, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [7, 0, 8, 2], "texture": "#4"}, - "west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [7, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [7, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_vine.json deleted file mode 100644 index 4e278b09..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_vine.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_vine_back", - "4": "minecraft:block/cherry_log", - "5": "beautify:block/trellis_vine_front", - "particle": "minecraft:block/cherry_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "east": {"uv": [3, 16, 5, 0], "texture": "#4"}, - "south": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "west": {"uv": [3, 0, 5, 16], "texture": "#4"}, - "up": {"uv": [3, 0, 4, 2], "texture": "#4"}, - "down": {"uv": [3, 0, 4, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "east": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "south": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "west": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "up": {"uv": [1, 0, 2, 2], "texture": "#4"}, - "down": {"uv": [1, 0, 2, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "east": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "south": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "west": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "up": {"uv": [13, 2, 14, 0], "texture": "#4"}, - "down": {"uv": [13, 2, 14, 0], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [12, 0, 13, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [12, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [12, 0, 13, 2], "texture": "#4"}, - "west": {"uv": [12, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [12, 0, 13, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [12, 0, 13, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [7, 0, 8, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [7, 0, 9, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [7, 0, 8, 2], "texture": "#4"}, - "west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [7, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [7, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_weeping_vines.json deleted file mode 100644 index 4d434109..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/closed_trellis_weeping_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_weeping_vines_back", - "4": "minecraft:block/cherry_log", - "5": "beautify:block/trellis_weeping_vines_front", - "particle": "minecraft:block/cherry_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "east": {"uv": [3, 16, 5, 0], "texture": "#4"}, - "south": {"uv": [3, 16, 4, 0], "texture": "#4"}, - "west": {"uv": [3, 0, 5, 16], "texture": "#4"}, - "up": {"uv": [3, 0, 4, 2], "texture": "#4"}, - "down": {"uv": [3, 0, 4, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "east": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "south": {"uv": [1, 0, 2, 16], "texture": "#4"}, - "west": {"uv": [1, 0, 3, 16], "texture": "#4"}, - "up": {"uv": [1, 0, 2, 2], "texture": "#4"}, - "down": {"uv": [1, 0, 2, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "east": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "south": {"uv": [13, 16, 14, 0], "texture": "#4"}, - "west": {"uv": [13, 16, 15, 0], "texture": "#4"}, - "up": {"uv": [13, 2, 14, 0], "texture": "#4"}, - "down": {"uv": [13, 2, 14, 0], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [12, 0, 13, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [12, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [12, 0, 13, 2], "texture": "#4"}, - "west": {"uv": [12, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [12, 0, 13, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [12, 0, 13, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [7, 0, 8, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [7, 0, 9, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [7, 0, 8, 2], "texture": "#4"}, - "west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [7, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [7, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis.json deleted file mode 100644 index 11dca4ad..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/cherry_log", - "particle": "minecraft:block/cherry_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [3, 0, 5, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [13, 16, 14, 0], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 16, 14, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 16, 15, 0], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [6, 0, 7, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [6, 0, 7, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [6, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [6, 0, 8, 16], "texture": "#4"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_lichen.json deleted file mode 100644 index ab7659d9..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_lichen.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/cherry_log", - "5": "beautify:block/trellis_lichen_back", - "6": "beautify:block/trellis_lichen_front", - "7": "beautify:block/trellis_lichen_hanging", - "particle": "minecraft:block/cherry_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [3, 0, 5, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [13, 16, 14, 0], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 16, 14, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 16, 15, 0], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [6, 0, 7, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [6, 0, 7, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [6, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [6, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_lilac.json deleted file mode 100644 index d1fc5433..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_lilac.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/cherry_log", - "5": "beautify:block/trellis_lilac_back", - "6": "beautify:block/trellis_lilac_front", - "7": "beautify:block/trellis_lilac_hanging", - "particle": "minecraft:block/cherry_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [3, 0, 5, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [13, 16, 14, 0], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 16, 14, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 16, 15, 0], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [6, 0, 7, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [6, 0, 7, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [6, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [6, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_peony.json deleted file mode 100644 index 7b429663..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_peony.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/cherry_log", - "5": "beautify:block/trellis_peony_back", - "6": "beautify:block/trellis_peony_front", - "7": "beautify:block/trellis_peony_hanging", - "particle": "minecraft:block/cherry_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [3, 0, 5, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [13, 16, 14, 0], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 16, 14, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 16, 15, 0], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [6, 0, 7, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [6, 0, 7, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [6, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [6, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_rose.json deleted file mode 100644 index 26b48da5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_rose.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/cherry_log", - "5": "beautify:block/trellis_rose_back", - "6": "beautify:block/trellis_rose_front", - "7": "beautify:block/trellis_rose_hanging", - "particle": "minecraft:block/cherry_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [3, 0, 5, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [13, 16, 14, 0], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 16, 14, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 16, 15, 0], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [6, 0, 7, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [6, 0, 7, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [6, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [6, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_sunflower.json deleted file mode 100644 index 9a9d9b9f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_sunflower.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/cherry_log", - "5": "beautify:block/trellis_sunflower_back", - "6": "beautify:block/trellis_sunflower_front", - "7": "beautify:block/trellis_sunflower_hanging", - "particle": "minecraft:block/cherry_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [3, 0, 5, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [13, 16, 14, 0], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 16, 14, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 16, 15, 0], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [6, 0, 7, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [6, 0, 7, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [6, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [6, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_twisting_vines.json deleted file mode 100644 index 3d27e29c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_twisting_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/cherry_log", - "5": "beautify:block/trellis_twisting_vines_back", - "6": "beautify:block/trellis_twisting_vines_front", - "7": "beautify:block/trellis_twisting_vines_hanging", - "particle": "minecraft:block/cherry_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [3, 0, 5, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [13, 16, 14, 0], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 16, 14, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 16, 15, 0], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [6, 0, 7, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [6, 0, 7, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [6, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [6, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_vine.json deleted file mode 100644 index 0cdb61bc..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_vine.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/cherry_log", - "5": "beautify:block/trellis_vine_back", - "6": "beautify:block/trellis_vine_front", - "7": "beautify:block/trellis_vine_hanging", - "particle": "minecraft:block/cherry_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [3, 0, 5, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [13, 16, 14, 0], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 16, 14, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 16, 15, 0], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [6, 0, 7, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [6, 0, 7, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [6, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [6, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_weeping_vines.json deleted file mode 100644 index 65eaa2d3..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/cherry/open_trellis_weeping_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/cherry_log", - "5": "beautify:block/trellis_weeping_vines_back", - "6": "beautify:block/trellis_weeping_vines_front", - "7": "beautify:block/trellis_weeping_vines_hanging", - "particle": "minecraft:block/cherry_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [3, 0, 5, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 0, 14, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [13, 0, 14, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [13, 0, 14, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [13, 16, 14, 0], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [13, 16, 14, 0], "rotation": 90, "texture": "#4"}, - "up": {"uv": [13, 16, 15, 0], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 16, 15, 0], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [13, 0, 15, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [6, 0, 7, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [6, 0, 7, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [6, 0, 8, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [6, 0, 8, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis.json deleted file mode 100644 index 0779d7ac..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/crimson_stem", - "particle": "minecraft:block/crimson_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "up": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "down": {"uv": [2, 0, 3, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "up": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "down": {"uv": [4, 0, 5, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 5, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 5, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [4.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "translation": [-5.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [6.75, -1.25, 2] - }, - "firstperson_lefthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [3.75, -1.5, -12] - }, - "ground": { - "translation": [4.75, 2.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "gui": { - "rotation": [32.02, 83.55, -42.04], - "translation": [0.5, -1.25, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "rotation": [0, 90, 0], - "translation": [0, 0, -14.25] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, 0, -8.25] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_lichen.json deleted file mode 100644 index 9b81addc..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_lichen.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lichen_back", - "4": "minecraft:block/crimson_stem", - "5": "beautify:block/trellis_lichen_front", - "particle": "minecraft:block/crimson_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "up": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "down": {"uv": [2, 0, 3, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "up": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "down": {"uv": [4, 0, 5, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 5, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 5, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_lilac.json deleted file mode 100644 index 805ffb3c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_lilac.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lilac_back", - "4": "minecraft:block/crimson_stem", - "5": "beautify:block/trellis_lilac_front", - "particle": "minecraft:block/crimson_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "up": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "down": {"uv": [2, 0, 3, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "up": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "down": {"uv": [4, 0, 5, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 5, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 5, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_peony.json deleted file mode 100644 index 6459c09c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_peony.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_peony_back", - "4": "minecraft:block/crimson_stem", - "5": "beautify:block/trellis_peony_front", - "particle": "minecraft:block/crimson_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "up": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "down": {"uv": [2, 0, 3, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "up": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "down": {"uv": [4, 0, 5, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 5, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 5, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_rose.json deleted file mode 100644 index 42a2527b..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_rose.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_rose_back", - "4": "minecraft:block/crimson_stem", - "5": "beautify:block/trellis_rose_front", - "particle": "minecraft:block/crimson_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "up": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "down": {"uv": [2, 0, 3, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "up": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "down": {"uv": [4, 0, 5, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 5, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 5, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_sunflower.json deleted file mode 100644 index 1aff4903..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_sunflower.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_sunflower_back", - "4": "minecraft:block/crimson_stem", - "5": "beautify:block/trellis_sunflower_front", - "particle": "minecraft:block/crimson_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "up": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "down": {"uv": [2, 0, 3, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "up": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "down": {"uv": [4, 0, 5, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 5, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 5, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_twisting_vines.json deleted file mode 100644 index d0f496e8..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_twisting_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_twisting_vines_back", - "4": "minecraft:block/crimson_stem", - "5": "beautify:block/trellis_twisting_vines_front", - "particle": "minecraft:block/crimson_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "up": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "down": {"uv": [2, 0, 3, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "up": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "down": {"uv": [4, 0, 5, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 5, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 5, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_vine.json deleted file mode 100644 index 1ec4c5f6..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_vine.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_vine_back", - "4": "minecraft:block/crimson_stem", - "5": "beautify:block/trellis_vine_front", - "particle": "minecraft:block/crimson_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "up": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "down": {"uv": [2, 0, 3, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "up": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "down": {"uv": [4, 0, 5, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 5, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 5, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_weeping_vines.json deleted file mode 100644 index 981dbaf5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/closed_trellis_weeping_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_weeping_vines_back", - "4": "minecraft:block/crimson_stem", - "5": "beautify:block/trellis_weeping_vines_front", - "particle": "minecraft:block/crimson_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "up": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "down": {"uv": [2, 0, 3, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "up": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "down": {"uv": [4, 0, 5, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 5, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 5, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis.json deleted file mode 100644 index 036c8d83..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/crimson_stem", - "particle": "minecraft:block/crimson_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "texture": "#4"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_lichen.json deleted file mode 100644 index 95f10555..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_lichen.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/crimson_stem", - "5": "beautify:block/trellis_lichen_back", - "6": "beautify:block/trellis_lichen_front", - "7": "beautify:block/trellis_lichen_hanging", - "particle": "minecraft:block/crimson_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_lilac.json deleted file mode 100644 index d8ea1734..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_lilac.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/crimson_stem", - "5": "beautify:block/trellis_lilac_back", - "6": "beautify:block/trellis_lilac_front", - "7": "beautify:block/trellis_lilac_hanging", - "particle": "minecraft:block/crimson_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_peony.json deleted file mode 100644 index 8da4ffaf..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_peony.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/crimson_stem", - "5": "beautify:block/trellis_peony_back", - "6": "beautify:block/trellis_peony_front", - "7": "beautify:block/trellis_peony_hanging", - "particle": "minecraft:block/crimson_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_rose.json deleted file mode 100644 index 4080f21c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_rose.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/crimson_stem", - "5": "beautify:block/trellis_rose_back", - "6": "beautify:block/trellis_rose_front", - "7": "beautify:block/trellis_rose_hanging", - "particle": "minecraft:block/crimson_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_sunflower.json deleted file mode 100644 index 48950a8b..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_sunflower.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/crimson_stem", - "5": "beautify:block/trellis_sunflower_back", - "6": "beautify:block/trellis_sunflower_front", - "7": "beautify:block/trellis_sunflower_hanging", - "particle": "minecraft:block/crimson_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_twisting_vines.json deleted file mode 100644 index 316aa1ec..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_twisting_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/crimson_stem", - "5": "beautify:block/trellis_twisting_vines_back", - "6": "beautify:block/trellis_twisting_vines_front", - "7": "beautify:block/trellis_twisting_vines_hanging", - "particle": "minecraft:block/crimson_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_vine.json deleted file mode 100644 index 91a596f3..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_vine.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/crimson_stem", - "5": "beautify:block/trellis_vine_back", - "6": "beautify:block/trellis_vine_front", - "7": "beautify:block/trellis_vine_hanging", - "particle": "minecraft:block/crimson_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_weeping_vines.json deleted file mode 100644 index 60cd3872..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/crimson/open_trellis_weeping_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/crimson_stem", - "5": "beautify:block/trellis_weeping_vines_back", - "6": "beautify:block/trellis_weeping_vines_front", - "7": "beautify:block/trellis_weeping_vines_hanging", - "particle": "minecraft:block/crimson_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis.json deleted file mode 100644 index 9f02aeca..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/dark_oak_log", - "particle": "block/dark_oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#0"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#0"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#0"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [4.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "translation": [-5.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [6.75, -1.25, 2] - }, - "firstperson_lefthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [3.75, -1.5, -12] - }, - "ground": { - "translation": [4.75, 2.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "gui": { - "rotation": [32.02, 83.55, -42.04], - "translation": [0.5, -1.25, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "rotation": [0, 90, 0], - "translation": [0, 0, -14.25] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, 0, -8.25] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_lichen.json deleted file mode 100644 index c7301696..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_lichen.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lichen_back", - "4": "minecraft:block/dark_oak_log", - "5": "beautify:block/trellis_lichen_front", - "particle": "minecraft:block/dark_oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_lilac.json deleted file mode 100644 index 7e64c9ce..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_lilac.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lilac_back", - "4": "minecraft:block/dark_oak_log", - "5": "beautify:block/trellis_lilac_front", - "particle": "minecraft:block/dark_oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_peony.json deleted file mode 100644 index f53a39c8..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_peony.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_peony_back", - "4": "minecraft:block/dark_oak_log", - "5": "beautify:block/trellis_peony_front", - "particle": "minecraft:block/dark_oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_rose.json deleted file mode 100644 index 22cdb60f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_rose.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_rose_back", - "4": "minecraft:block/dark_oak_log", - "5": "beautify:block/trellis_rose_front", - "particle": "minecraft:block/dark_oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_sunflower.json deleted file mode 100644 index 6016ff2b..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_sunflower.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_sunflower_back", - "4": "minecraft:block/dark_oak_log", - "5": "beautify:block/trellis_sunflower_front", - "particle": "minecraft:block/dark_oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_twisting_vines.json deleted file mode 100644 index a0ea54d4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_twisting_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_twisting_vines_back", - "4": "minecraft:block/dark_oak_log", - "5": "beautify:block/trellis_twisting_vines_front", - "particle": "minecraft:block/dark_oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_vine.json deleted file mode 100644 index 44d21cc9..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_vine.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_vine_back", - "4": "minecraft:block/dark_oak_log", - "5": "beautify:block/trellis_vine_front", - "particle": "minecraft:block/dark_oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_weeping_vines.json deleted file mode 100644 index 28564b1f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/closed_trellis_weeping_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_weeping_vines_back", - "4": "minecraft:block/dark_oak_log", - "5": "beautify:block/trellis_weeping_vines_front", - "particle": "minecraft:block/dark_oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis.json deleted file mode 100644 index 48359656..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "minecraft:block/dark_oak_log", - "particle": "minecraft:block/dark_oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#0"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#0"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#0"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_lichen.json deleted file mode 100644 index ed954d4b..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_lichen.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/dark_oak_log", - "5": "beautify:block/trellis_lichen_back", - "6": "beautify:block/trellis_lichen_front", - "7": "beautify:block/trellis_lichen_hanging", - "particle": "minecraft:block/dark_oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_lilac.json deleted file mode 100644 index 221f3536..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_lilac.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/dark_oak_log", - "5": "beautify:block/trellis_lilac_back", - "6": "beautify:block/trellis_lilac_front", - "7": "beautify:block/trellis_lilac_hanging", - "particle": "minecraft:block/dark_oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_peony.json deleted file mode 100644 index 444703da..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_peony.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/dark_oak_log", - "5": "beautify:block/trellis_peony_back", - "6": "beautify:block/trellis_peony_front", - "7": "beautify:block/trellis_peony_hanging", - "particle": "minecraft:block/dark_oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_rose.json deleted file mode 100644 index 47a1f16a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_rose.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/dark_oak_log", - "5": "beautify:block/trellis_rose_back", - "6": "beautify:block/trellis_rose_front", - "7": "beautify:block/trellis_rose_hanging", - "particle": "minecraft:block/dark_oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_sunflower.json deleted file mode 100644 index 044b06f8..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_sunflower.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/dark_oak_log", - "5": "beautify:block/trellis_sunflower_back", - "6": "beautify:block/trellis_sunflower_front", - "7": "beautify:block/trellis_sunflower_hanging", - "particle": "minecraft:block/dark_oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_twisting_vines.json deleted file mode 100644 index 22df50ce..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_twisting_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/dark_oak_log", - "5": "beautify:block/trellis_twisting_vines_back", - "6": "beautify:block/trellis_twisting_vines_front", - "7": "beautify:block/trellis_twisting_vines_hanging", - "particle": "minecraft:block/dark_oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_vine.json deleted file mode 100644 index cbc43197..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_vine.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/dark_oak_log", - "5": "beautify:block/trellis_vine_back", - "6": "beautify:block/trellis_vine_front", - "7": "beautify:block/trellis_vine_hanging", - "particle": "minecraft:block/dark_oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_weeping_vines.json deleted file mode 100644 index bd04d757..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/dark_oak/open_trellis_weeping_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/dark_oak_log", - "5": "beautify:block/trellis_weeping_vines_back", - "6": "beautify:block/trellis_weeping_vines_front", - "7": "beautify:block/trellis_weeping_vines_hanging", - "particle": "minecraft:block/dark_oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis.json deleted file mode 100644 index 7f7e756a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/jungle_log", - "particle": "block/jungle_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#0"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#0"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#0"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [4.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "translation": [-5.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [6.75, -1.25, 2] - }, - "firstperson_lefthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [3.75, -1.5, -12] - }, - "ground": { - "translation": [4.75, 2.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "gui": { - "rotation": [32.02, 83.55, -42.04], - "translation": [0.5, -1.25, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "rotation": [0, 90, 0], - "translation": [0, 0, -14.25] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, 0, -8.25] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_lichen.json deleted file mode 100644 index 48d46f29..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_lichen.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lichen_back", - "4": "minecraft:block/jungle_log", - "5": "beautify:block/trellis_lichen_front", - "particle": "minecraft:block/jungle_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_lilac.json deleted file mode 100644 index 37621a64..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_lilac.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lilac_back", - "4": "minecraft:block/jungle_log", - "5": "beautify:block/trellis_lilac_front", - "particle": "minecraft:block/jungle_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_peony.json deleted file mode 100644 index f04a6fdd..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_peony.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_peony_back", - "4": "minecraft:block/jungle_log", - "5": "beautify:block/trellis_peony_front", - "particle": "minecraft:block/jungle_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_rose.json deleted file mode 100644 index 9ac5013b..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_rose.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_rose_back", - "4": "minecraft:block/jungle_log", - "5": "beautify:block/trellis_rose_front", - "particle": "minecraft:block/jungle_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_sunflower.json deleted file mode 100644 index ecfd5452..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_sunflower.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_sunflower_back", - "4": "minecraft:block/jungle_log", - "5": "beautify:block/trellis_sunflower_front", - "particle": "minecraft:block/jungle_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_twisting_vines.json deleted file mode 100644 index 4e7f5913..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_twisting_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_twisting_vines_back", - "4": "minecraft:block/jungle_log", - "5": "beautify:block/trellis_twisting_vines_front", - "particle": "minecraft:block/jungle_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_vine.json deleted file mode 100644 index aa181d9f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_vine.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_vine_back", - "4": "minecraft:block/jungle_log", - "5": "beautify:block/trellis_vine_front", - "particle": "minecraft:block/jungle_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_weeping_vines.json deleted file mode 100644 index aab3428e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/closed_trellis_weeping_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_weeping_vines_back", - "4": "minecraft:block/jungle_log", - "5": "beautify:block/trellis_weeping_vines_front", - "particle": "minecraft:block/jungle_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis.json deleted file mode 100644 index 5640c073..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "minecraft:block/jungle_log", - "particle": "minecraft:block/jungle_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#0"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#0"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#0"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_lichen.json deleted file mode 100644 index e90190e0..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_lichen.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/jungle_log", - "5": "beautify:block/trellis_lichen_back", - "6": "beautify:block/trellis_lichen_front", - "7": "beautify:block/trellis_lichen_hanging", - "particle": "minecraft:block/jungle_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_lilac.json deleted file mode 100644 index bc15ffe4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_lilac.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/jungle_log", - "5": "beautify:block/trellis_lilac_back", - "6": "beautify:block/trellis_lilac_front", - "7": "beautify:block/trellis_lilac_hanging", - "particle": "minecraft:block/jungle_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_peony.json deleted file mode 100644 index 2c5c97b3..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_peony.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/jungle_log", - "5": "beautify:block/trellis_peony_back", - "6": "beautify:block/trellis_peony_front", - "7": "beautify:block/trellis_peony_hanging", - "particle": "minecraft:block/jungle_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_rose.json deleted file mode 100644 index b5588727..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_rose.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/jungle_log", - "5": "beautify:block/trellis_rose_back", - "6": "beautify:block/trellis_rose_front", - "7": "beautify:block/trellis_rose_hanging", - "particle": "minecraft:block/jungle_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_sunflower.json deleted file mode 100644 index a025b14e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_sunflower.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/jungle_log", - "5": "beautify:block/trellis_sunflower_back", - "6": "beautify:block/trellis_sunflower_front", - "7": "beautify:block/trellis_sunflower_hanging", - "particle": "minecraft:block/jungle_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_twisting_vines.json deleted file mode 100644 index aace0d2f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_twisting_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/jungle_log", - "5": "beautify:block/trellis_twisting_vines_back", - "6": "beautify:block/trellis_twisting_vines_front", - "7": "beautify:block/trellis_twisting_vines_hanging", - "particle": "minecraft:block/jungle_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_vine.json deleted file mode 100644 index 2283d53e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_vine.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/jungle_log", - "5": "beautify:block/trellis_vine_back", - "6": "beautify:block/trellis_vine_front", - "7": "beautify:block/trellis_vine_hanging", - "particle": "minecraft:block/jungle_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_weeping_vines.json deleted file mode 100644 index faf28cc1..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/jungle/open_trellis_weeping_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/jungle_log", - "5": "beautify:block/trellis_weeping_vines_back", - "6": "beautify:block/trellis_weeping_vines_front", - "7": "beautify:block/trellis_weeping_vines_hanging", - "particle": "minecraft:block/jungle_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis.json deleted file mode 100644 index 49bbfcc7..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/mangrove_log", - "particle": "block/mangrove_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#0"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#0"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#0"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [4.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "translation": [-5.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [6.75, -1.25, 2] - }, - "firstperson_lefthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [3.75, -1.5, -12] - }, - "ground": { - "translation": [4.75, 2.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "gui": { - "rotation": [32.02, 83.55, -42.04], - "translation": [0.5, -1.25, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "rotation": [0, 90, 0], - "translation": [0, 0, -14.25] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, 0, -8.25] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_lichen.json deleted file mode 100644 index ad325766..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_lichen.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lichen_back", - "4": "minecraft:block/mangrove_log", - "5": "beautify:block/trellis_lichen_front", - "particle": "minecraft:block/mangrove_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_lilac.json deleted file mode 100644 index 1df65b7a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_lilac.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lilac_back", - "4": "minecraft:block/mangrove_log", - "5": "beautify:block/trellis_lilac_front", - "particle": "minecraft:block/mangrove_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_peony.json deleted file mode 100644 index cc044185..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_peony.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_peony_back", - "4": "minecraft:block/mangrove_log", - "5": "beautify:block/trellis_peony_front", - "particle": "minecraft:block/mangrove_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_rose.json deleted file mode 100644 index d2a4d07d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_rose.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_rose_back", - "4": "minecraft:block/mangrove_log", - "5": "beautify:block/trellis_rose_front", - "particle": "minecraft:block/mangrove_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_sunflower.json deleted file mode 100644 index 5f297684..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_sunflower.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_sunflower_back", - "4": "minecraft:block/mangrove_log", - "5": "beautify:block/trellis_sunflower_front", - "particle": "minecraft:block/mangrove_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_twisting_vines.json deleted file mode 100644 index bc1071c3..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_twisting_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_twisting_vines_back", - "4": "minecraft:block/mangrove_log", - "5": "beautify:block/trellis_twisting_vines_front", - "particle": "minecraft:block/mangrove_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_vine.json deleted file mode 100644 index d4105d75..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_vine.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_vine_back", - "4": "minecraft:block/mangrove_log", - "5": "beautify:block/trellis_vine_front", - "particle": "minecraft:block/mangrove_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_weeping_vines.json deleted file mode 100644 index f785d95c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/closed_trellis_weeping_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_weeping_vines_back", - "4": "minecraft:block/mangrove_log", - "5": "beautify:block/trellis_weeping_vines_front", - "particle": "minecraft:block/mangrove_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis.json deleted file mode 100644 index a54dd09c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "minecraft:block/mangrove_log", - "particle": "minecraft:block/mangrove_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#0"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#0"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#0"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_lichen.json deleted file mode 100644 index cb0ee8cf..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_lichen.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/mangrove_log", - "5": "beautify:block/trellis_lichen_back", - "6": "beautify:block/trellis_lichen_front", - "7": "beautify:block/trellis_lichen_hanging", - "particle": "minecraft:block/mangrove_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_lilac.json deleted file mode 100644 index 593459e0..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_lilac.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/mangrove_log", - "5": "beautify:block/trellis_lilac_back", - "6": "beautify:block/trellis_lilac_front", - "7": "beautify:block/trellis_lilac_hanging", - "particle": "minecraft:block/mangrove_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_peony.json deleted file mode 100644 index 9a7768c3..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_peony.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/mangrove_log", - "5": "beautify:block/trellis_peony_back", - "6": "beautify:block/trellis_peony_front", - "7": "beautify:block/trellis_peony_hanging", - "particle": "minecraft:block/mangrove_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_rose.json deleted file mode 100644 index 7f5ebb9b..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_rose.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/mangrove_log", - "5": "beautify:block/trellis_rose_back", - "6": "beautify:block/trellis_rose_front", - "7": "beautify:block/trellis_rose_hanging", - "particle": "minecraft:block/mangrove_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_sunflower.json deleted file mode 100644 index 7766ba98..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_sunflower.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/mangrove_log", - "5": "beautify:block/trellis_sunflower_back", - "6": "beautify:block/trellis_sunflower_front", - "7": "beautify:block/trellis_sunflower_hanging", - "particle": "minecraft:block/mangrove_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_twisting_vines.json deleted file mode 100644 index 88b52431..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_twisting_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/mangrove_log", - "5": "beautify:block/trellis_twisting_vines_back", - "6": "beautify:block/trellis_twisting_vines_front", - "7": "beautify:block/trellis_twisting_vines_hanging", - "particle": "minecraft:block/mangrove_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_vine.json deleted file mode 100644 index 70f3d257..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_vine.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/mangrove_log", - "5": "beautify:block/trellis_vine_back", - "6": "beautify:block/trellis_vine_front", - "7": "beautify:block/trellis_vine_hanging", - "particle": "minecraft:block/mangrove_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_weeping_vines.json deleted file mode 100644 index 3269acff..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/mangrove/open_trellis_weeping_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/mangrove_log", - "5": "beautify:block/trellis_weeping_vines_back", - "6": "beautify:block/trellis_weeping_vines_front", - "7": "beautify:block/trellis_weeping_vines_hanging", - "particle": "minecraft:block/mangrove_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis.json deleted file mode 100644 index a05e50fd..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/oak_log", - "particle": "block/oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#0"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#0"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#0"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [4.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "translation": [-5.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [6.75, -1.25, 2] - }, - "firstperson_lefthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [3.75, -1.5, -12] - }, - "ground": { - "translation": [4.75, 2.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "gui": { - "rotation": [32.02, 83.55, -42.04], - "translation": [0.5, -1.25, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "rotation": [0, 90, 0], - "translation": [0, 0, -14.25] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, 0, -8.25] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_lichen.json deleted file mode 100644 index 76240ab8..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_lichen.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lichen_back", - "4": "minecraft:block/oak_log", - "5": "beautify:block/trellis_lichen_front", - "particle": "minecraft:block/oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_lilac.json deleted file mode 100644 index 6e4d7527..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_lilac.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lilac_back", - "4": "minecraft:block/oak_log", - "5": "beautify:block/trellis_lilac_front", - "particle": "minecraft:block/oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_peony.json deleted file mode 100644 index 746f061a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_peony.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_peony_back", - "4": "minecraft:block/oak_log", - "5": "beautify:block/trellis_peony_front", - "particle": "minecraft:block/oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_rose.json deleted file mode 100644 index 369118fd..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_rose.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_rose_back", - "4": "minecraft:block/oak_log", - "5": "beautify:block/trellis_rose_front", - "particle": "minecraft:block/oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_sunflower.json deleted file mode 100644 index a73ba4fa..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_sunflower.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_sunflower_back", - "4": "minecraft:block/oak_log", - "5": "beautify:block/trellis_sunflower_front", - "particle": "minecraft:block/oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_twisting_vines.json deleted file mode 100644 index 72911b48..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_twisting_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_twisting_vines_back", - "4": "minecraft:block/oak_log", - "5": "beautify:block/trellis_twisting_vines_front", - "particle": "minecraft:block/oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_vine.json deleted file mode 100644 index adf9c97d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_vine.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_vine_back", - "4": "minecraft:block/oak_log", - "5": "beautify:block/trellis_vine_front", - "particle": "minecraft:block/oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_weeping_vines.json deleted file mode 100644 index 5b20b7a0..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/closed_trellis_weeping_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_weeping_vines_back", - "4": "minecraft:block/oak_log", - "5": "beautify:block/trellis_weeping_vines_front", - "particle": "minecraft:block/oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis.json deleted file mode 100644 index bd788c38..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "minecraft:block/oak_log", - "particle": "minecraft:block/oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#0"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#0"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#0"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_lichen.json deleted file mode 100644 index 1d59d506..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_lichen.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/oak_log", - "5": "beautify:block/trellis_lichen_back", - "6": "beautify:block/trellis_lichen_front", - "7": "beautify:block/trellis_lichen_hanging", - "particle": "minecraft:block/oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_lilac.json deleted file mode 100644 index 8c1c41aa..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_lilac.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/oak_log", - "5": "beautify:block/trellis_lilac_back", - "6": "beautify:block/trellis_lilac_front", - "7": "beautify:block/trellis_lilac_hanging", - "particle": "minecraft:block/oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_peony.json deleted file mode 100644 index dfe21f88..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_peony.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/oak_log", - "5": "beautify:block/trellis_peony_back", - "6": "beautify:block/trellis_peony_front", - "7": "beautify:block/trellis_peony_hanging", - "particle": "minecraft:block/oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_rose.json deleted file mode 100644 index b89513c4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_rose.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/oak_log", - "5": "beautify:block/trellis_rose_back", - "6": "beautify:block/trellis_rose_front", - "7": "beautify:block/trellis_rose_hanging", - "particle": "minecraft:block/oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_sunflower.json deleted file mode 100644 index 54a2d559..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_sunflower.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/oak_log", - "5": "beautify:block/trellis_sunflower_back", - "6": "beautify:block/trellis_sunflower_front", - "7": "beautify:block/trellis_sunflower_hanging", - "particle": "minecraft:block/oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_twisting_vines.json deleted file mode 100644 index 52591ed9..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_twisting_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/oak_log", - "5": "beautify:block/trellis_twisting_vines_back", - "6": "beautify:block/trellis_twisting_vines_front", - "7": "beautify:block/trellis_twisting_vines_hanging", - "particle": "minecraft:block/oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_vine.json deleted file mode 100644 index d6f14508..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_vine.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/oak_log", - "5": "beautify:block/trellis_vine_back", - "6": "beautify:block/trellis_vine_front", - "7": "beautify:block/trellis_vine_hanging", - "particle": "minecraft:block/oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_weeping_vines.json deleted file mode 100644 index 9c3d160f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/oak/open_trellis_weeping_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/oak_log", - "5": "beautify:block/trellis_weeping_vines_back", - "6": "beautify:block/trellis_weeping_vines_front", - "7": "beautify:block/trellis_weeping_vines_hanging", - "particle": "minecraft:block/oak_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis.json deleted file mode 100644 index d25eac09..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "block/spruce_log", - "particle": "block/spruce_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#0"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#0"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#0"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#0"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [4.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "translation": [-5.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [6.75, -1.25, 2] - }, - "firstperson_lefthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [3.75, -1.5, -12] - }, - "ground": { - "translation": [4.75, 2.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "gui": { - "rotation": [32.02, 83.55, -42.04], - "translation": [0.5, -1.25, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "rotation": [0, 90, 0], - "translation": [0, 0, -14.25] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, 0, -8.25] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_lichen.json deleted file mode 100644 index 0319ad4a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_lichen.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lichen_back", - "4": "minecraft:block/spruce_log", - "5": "beautify:block/trellis_lichen_front", - "particle": "minecraft:block/spruce_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_lilac.json deleted file mode 100644 index a00fb941..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_lilac.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lilac_back", - "4": "minecraft:block/spruce_log", - "5": "beautify:block/trellis_lilac_front", - "particle": "minecraft:block/spruce_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_peony.json deleted file mode 100644 index 8025d5e1..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_peony.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_peony_back", - "4": "minecraft:block/spruce_log", - "5": "beautify:block/trellis_peony_front", - "particle": "minecraft:block/spruce_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_rose.json deleted file mode 100644 index e4bfbd73..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_rose.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_rose_back", - "4": "minecraft:block/spruce_log", - "5": "beautify:block/trellis_rose_front", - "particle": "minecraft:block/spruce_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_sunflower.json deleted file mode 100644 index 73918545..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_sunflower.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_sunflower_back", - "4": "minecraft:block/spruce_log", - "5": "beautify:block/trellis_sunflower_front", - "particle": "minecraft:block/spruce_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_twisting_vines.json deleted file mode 100644 index 9966719f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_twisting_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_twisting_vines_back", - "4": "minecraft:block/spruce_log", - "5": "beautify:block/trellis_twisting_vines_front", - "particle": "minecraft:block/spruce_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_vine.json deleted file mode 100644 index 70d8308e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_vine.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_vine_back", - "4": "minecraft:block/spruce_log", - "5": "beautify:block/trellis_vine_front", - "particle": "minecraft:block/spruce_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_weeping_vines.json deleted file mode 100644 index 62051d76..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/closed_trellis_weeping_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_weeping_vines_back", - "4": "minecraft:block/spruce_log", - "5": "beautify:block/trellis_weeping_vines_front", - "particle": "minecraft:block/spruce_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis.json deleted file mode 100644 index 18cd9cac..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "minecraft:block/spruce_log", - "particle": "minecraft:block/spruce_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#0"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#0"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#0"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#0"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#0"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#0"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_lichen.json deleted file mode 100644 index feb0f948..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_lichen.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/spruce_log", - "5": "beautify:block/trellis_lichen_back", - "6": "beautify:block/trellis_lichen_front", - "7": "beautify:block/trellis_lichen_hanging", - "particle": "minecraft:block/spruce_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_lilac.json deleted file mode 100644 index 0c9e79a0..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_lilac.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/spruce_log", - "5": "beautify:block/trellis_lilac_back", - "6": "beautify:block/trellis_lilac_front", - "7": "beautify:block/trellis_lilac_hanging", - "particle": "minecraft:block/spruce_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_peony.json deleted file mode 100644 index 2cba0231..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_peony.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/spruce_log", - "5": "beautify:block/trellis_peony_back", - "6": "beautify:block/trellis_peony_front", - "7": "beautify:block/trellis_peony_hanging", - "particle": "minecraft:block/spruce_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_rose.json deleted file mode 100644 index 5342f93c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_rose.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/spruce_log", - "5": "beautify:block/trellis_rose_back", - "6": "beautify:block/trellis_rose_front", - "7": "beautify:block/trellis_rose_hanging", - "particle": "minecraft:block/spruce_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_sunflower.json deleted file mode 100644 index 26f675a0..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_sunflower.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/spruce_log", - "5": "beautify:block/trellis_sunflower_back", - "6": "beautify:block/trellis_sunflower_front", - "7": "beautify:block/trellis_sunflower_hanging", - "particle": "minecraft:block/spruce_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_twisting_vines.json deleted file mode 100644 index cdc1a5c3..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_twisting_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/spruce_log", - "5": "beautify:block/trellis_twisting_vines_back", - "6": "beautify:block/trellis_twisting_vines_front", - "7": "beautify:block/trellis_twisting_vines_hanging", - "particle": "minecraft:block/spruce_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_vine.json deleted file mode 100644 index 6d9e609e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_vine.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/spruce_log", - "5": "beautify:block/trellis_vine_back", - "6": "beautify:block/trellis_vine_front", - "7": "beautify:block/trellis_vine_hanging", - "particle": "minecraft:block/spruce_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_weeping_vines.json deleted file mode 100644 index ec0cbbc6..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/spruce/open_trellis_weeping_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/spruce_log", - "5": "beautify:block/trellis_weeping_vines_back", - "6": "beautify:block/trellis_weeping_vines_front", - "7": "beautify:block/trellis_weeping_vines_hanging", - "particle": "minecraft:block/spruce_log" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis.json deleted file mode 100644 index 8a9d0420..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/warped_stem", - "particle": "minecraft:block/warped_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "up": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "down": {"uv": [2, 0, 3, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "up": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "down": {"uv": [4, 0, 5, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 5, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 5, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [4.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "thirdperson_lefthand": { - "translation": [-5.25, 0.75, -0.75], - "scale": [0.65, 0.65, 0.65] - }, - "firstperson_righthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [6.75, -1.25, 2] - }, - "firstperson_lefthand": { - "rotation": [-18.48, -83.15, -13.09], - "translation": [3.75, -1.5, -12] - }, - "ground": { - "translation": [4.75, 2.5, 0], - "scale": [0.65, 0.65, 0.65] - }, - "gui": { - "rotation": [32.02, 83.55, -42.04], - "translation": [0.5, -1.25, 0], - "scale": [0.9, 0.9, 0.9] - }, - "head": { - "rotation": [0, 90, 0], - "translation": [0, 0, -14.25] - }, - "fixed": { - "rotation": [0, 90, 0], - "translation": [0, 0, -8.25] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_lichen.json deleted file mode 100644 index 204cf9e7..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_lichen.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lichen_back", - "4": "minecraft:block/warped_stem", - "5": "beautify:block/trellis_lichen_front", - "particle": "minecraft:block/warped_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "up": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "down": {"uv": [2, 0, 3, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "up": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "down": {"uv": [4, 0, 5, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 5, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 5, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_lilac.json deleted file mode 100644 index bef5e313..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_lilac.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_lilac_back", - "4": "minecraft:block/warped_stem", - "5": "beautify:block/trellis_lilac_front", - "particle": "minecraft:block/warped_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "up": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "down": {"uv": [2, 0, 3, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "up": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "down": {"uv": [4, 0, 5, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 5, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 5, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_peony.json deleted file mode 100644 index 7b9093de..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_peony.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_peony_back", - "4": "minecraft:block/warped_stem", - "5": "beautify:block/trellis_peony_front", - "particle": "minecraft:block/warped_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "up": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "down": {"uv": [2, 0, 3, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "up": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "down": {"uv": [4, 0, 5, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 5, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 5, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_rose.json deleted file mode 100644 index 5f099532..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_rose.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_rose_back", - "4": "minecraft:block/warped_stem", - "5": "beautify:block/trellis_rose_front", - "particle": "minecraft:block/warped_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "up": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "down": {"uv": [2, 0, 3, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "up": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "down": {"uv": [4, 0, 5, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 5, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 5, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_sunflower.json deleted file mode 100644 index 5f2ca0af..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_sunflower.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_sunflower_back", - "4": "minecraft:block/warped_stem", - "5": "beautify:block/trellis_sunflower_front", - "particle": "minecraft:block/warped_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "up": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "down": {"uv": [2, 0, 3, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "up": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "down": {"uv": [4, 0, 5, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 5, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 5, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_twisting_vines.json deleted file mode 100644 index 2a09e0a0..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_twisting_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_twisting_vines_back", - "4": "minecraft:block/warped_stem", - "5": "beautify:block/trellis_twisting_vines_front", - "particle": "minecraft:block/warped_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "up": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "down": {"uv": [2, 0, 3, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "up": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "down": {"uv": [4, 0, 5, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 5, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 5, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_vine.json deleted file mode 100644 index f3f44a94..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_vine.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_vine_back", - "4": "minecraft:block/warped_stem", - "5": "beautify:block/trellis_vine_front", - "particle": "minecraft:block/warped_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "up": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "down": {"uv": [2, 0, 3, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "up": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "down": {"uv": [4, 0, 5, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 5, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 5, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_weeping_vines.json deleted file mode 100644 index 797cb318..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/closed_trellis_weeping_vines.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "3": "beautify:block/trellis_weeping_vines_back", - "4": "minecraft:block/warped_stem", - "5": "beautify:block/trellis_weeping_vines_front", - "particle": "minecraft:block/warped_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0.25, 0, 2.5], - "to": [1.25, 16, 4.5], - "faces": { - "north": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "texture": "#4"}, - "up": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "down": {"uv": [0, 0, 1, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 11.5], - "to": [1.25, 16, 13.5], - "faces": { - "north": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "texture": "#4"}, - "up": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "down": {"uv": [2, 0, 3, 2], "texture": "#4"} - } - }, - { - "from": [0.25, 0, 7], - "to": [1.25, 16, 9], - "faces": { - "north": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "texture": "#4"}, - "up": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "down": {"uv": [4, 0, 5, 2], "texture": "#4"} - } - }, - { - "from": [0, 11.5, 0], - "to": [1, 13.5, 16], - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [4, 0, 6, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "texture": "#4"}, - "west": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 5, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 5, 16], "texture": "#4"} - } - }, - { - "from": [0, 2.5, 0], - "to": [1, 4.5, 16], - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [0, 0, 2, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "texture": "#4"}, - "west": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 1, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#4"} - } - }, - { - "from": [0, 7, 0], - "to": [1, 9, 16], - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 180, "texture": "#4"}, - "east": {"uv": [2, 0, 4, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "texture": "#4"}, - "west": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 3, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 3, 16], "texture": "#4"} - } - }, - { - "from": [0.5, 0, 0], - "to": [0.5, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [1.75, 0, 0], - "to": [1.75, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "east": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#3"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#3"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#3"} - } - }, - { - "from": [2, 0, 0], - "to": [2, 16, 16], - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "west": {"uv": [16, 0, 0, 16], "texture": "#5"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#5"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - 8 - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis.json deleted file mode 100644 index 18a48843..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/warped_stem", - "particle": "minecraft:block/warped_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "texture": "#4"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_lichen.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_lichen.json deleted file mode 100644 index 866693a4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_lichen.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/warped_stem", - "5": "beautify:block/trellis_lichen_back", - "6": "beautify:block/trellis_lichen_front", - "7": "beautify:block/trellis_lichen_hanging", - "particle": "minecraft:block/warped_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_lilac.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_lilac.json deleted file mode 100644 index 40c129df..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_lilac.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/warped_stem", - "5": "beautify:block/trellis_lilac_back", - "6": "beautify:block/trellis_lilac_front", - "7": "beautify:block/trellis_lilac_hanging", - "particle": "minecraft:block/warped_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_peony.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_peony.json deleted file mode 100644 index c1d9021e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_peony.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/warped_stem", - "5": "beautify:block/trellis_peony_back", - "6": "beautify:block/trellis_peony_front", - "7": "beautify:block/trellis_peony_hanging", - "particle": "minecraft:block/warped_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_rose.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_rose.json deleted file mode 100644 index 4efa2a0c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_rose.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/warped_stem", - "5": "beautify:block/trellis_rose_back", - "6": "beautify:block/trellis_rose_front", - "7": "beautify:block/trellis_rose_hanging", - "particle": "minecraft:block/warped_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_sunflower.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_sunflower.json deleted file mode 100644 index ee09969f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_sunflower.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/warped_stem", - "5": "beautify:block/trellis_sunflower_back", - "6": "beautify:block/trellis_sunflower_front", - "7": "beautify:block/trellis_sunflower_hanging", - "particle": "minecraft:block/warped_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_twisting_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_twisting_vines.json deleted file mode 100644 index f8bc6e18..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_twisting_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/warped_stem", - "5": "beautify:block/trellis_twisting_vines_back", - "6": "beautify:block/trellis_twisting_vines_front", - "7": "beautify:block/trellis_twisting_vines_hanging", - "particle": "minecraft:block/warped_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_vine.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_vine.json deleted file mode 100644 index 8cb26c50..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_vine.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/warped_stem", - "5": "beautify:block/trellis_vine_back", - "6": "beautify:block/trellis_vine_front", - "7": "beautify:block/trellis_vine_hanging", - "particle": "minecraft:block/warped_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_weeping_vines.json b/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_weeping_vines.json deleted file mode 100644 index 00be16b1..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/block/trellis/warped/open_trellis_weeping_vines.json +++ /dev/null @@ -1,178 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "4": "minecraft:block/warped_stem", - "5": "beautify:block/trellis_weeping_vines_back", - "6": "beautify:block/trellis_weeping_vines_front", - "7": "beautify:block/trellis_weeping_vines_hanging", - "particle": "minecraft:block/warped_stem" - }, - "render_type": "cutout", - "elements": [ - { - "from": [0, 14.75, 2.5], - "to": [16, 15.75, 4.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 11.5], - "to": [16, 15.75, 13.5], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [0, 14.75, 7], - "to": [16, 15.75, 9], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "rotation": 90, "texture": "#4"} - } - }, - { - "from": [11.5, 15, 0], - "to": [13.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [4, 0, 5, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [4, 0, 5, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [4, 0, 5, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [4, 0, 6, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [4, 0, 6, 16], "texture": "#4"} - } - }, - { - "from": [2.5, 15, 0], - "to": [4.5, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [0, 0, 1, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [0, 0, 2, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [0, 0, 2, 16], "texture": "#4"} - } - }, - { - "from": [7, 15, 0], - "to": [9, 16, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "east": {"uv": [2, 0, 3, 16], "rotation": 270, "texture": "#4"}, - "south": {"uv": [2, 0, 3, 2], "rotation": 90, "texture": "#4"}, - "west": {"uv": [2, 0, 3, 16], "rotation": 90, "texture": "#4"}, - "up": {"uv": [2, 0, 4, 16], "rotation": 180, "texture": "#4"}, - "down": {"uv": [2, 0, 4, 16], "texture": "#4"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": -45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 0, 0, 5], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 0, 16, 5], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "texture": "#7"} - } - }, - { - "from": [8, 11, -2], - "to": [8, 16, 18], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "east": {"uv": [16, 5, 0, 10], "texture": "#7"}, - "south": {"uv": [0, 0, 0, 16], "texture": "#7"}, - "west": {"uv": [0, 5, 16, 10], "texture": "#7"}, - "up": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"}, - "down": {"uv": [0, 0, 0, 16], "rotation": 180, "texture": "#7"} - } - }, - { - "from": [0, 15.5, 0], - "to": [16, 15.5, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 14, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#6"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "up": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#6"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#6"} - } - }, - { - "from": [0, 14.25, 0], - "to": [16, 14.25, 16], - "rotation": {"angle": 0, "axis": "z", "origin": [0, 16, 0]}, - "faces": { - "north": {"uv": [0, 0, 0, 16], "rotation": 270, "texture": "#5"}, - "east": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "south": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "west": {"uv": [0, 0, 0, 16], "rotation": 90, "texture": "#5"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#5"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#5"} - } - } - ], - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [0, 1, 2] - }, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [3, 4, 5] - }, - 6, - 7, - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "children": [8, 9, 10] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/acacia_blinds.json b/mod/beautify/src/main/resources/assets/beautify/models/item/acacia_blinds.json deleted file mode 100644 index ee84ec17..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/acacia_blinds.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/blinds/acacia_blinds_down" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/acacia_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/item/acacia_picture_frame.json deleted file mode 100644 index fe324c27..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/acacia_picture_frame.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/acacia_flower_picture_frame" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/acacia_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/item/acacia_trellis.json deleted file mode 100644 index 510003e4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/acacia_trellis.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/trellis/acacia/closed_trellis" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/birch_blinds.json b/mod/beautify/src/main/resources/assets/beautify/models/item/birch_blinds.json deleted file mode 100644 index fff849ae..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/birch_blinds.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/blinds/birch_blinds_down" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/birch_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/item/birch_picture_frame.json deleted file mode 100644 index 3406a2d8..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/birch_picture_frame.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/birch_flower_picture_frame" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/birch_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/item/birch_trellis.json deleted file mode 100644 index 2ab04425..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/birch_trellis.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/trellis/birch/closed_trellis" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/bookstack.json b/mod/beautify/src/main/resources/assets/beautify/models/item/bookstack.json deleted file mode 100644 index 692f5415..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/bookstack.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/bookstacks/bookstack_4" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/botanist_workbench.json b/mod/beautify/src/main/resources/assets/beautify/models/item/botanist_workbench.json deleted file mode 100644 index 24cd27b9..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/botanist_workbench.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/botanist_workbench" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/cherry_blinds.json b/mod/beautify/src/main/resources/assets/beautify/models/item/cherry_blinds.json deleted file mode 100644 index fa7afcc3..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/cherry_blinds.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/blinds/cherry_blinds_down" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/cherry_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/item/cherry_picture_frame.json deleted file mode 100644 index 0122b47d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/cherry_picture_frame.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/cherry_flower_picture_frame" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/cherry_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/item/cherry_trellis.json deleted file mode 100644 index 38b96227..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/cherry_trellis.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/trellis/cherry/closed_trellis" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/crimson_blinds.json b/mod/beautify/src/main/resources/assets/beautify/models/item/crimson_blinds.json deleted file mode 100644 index b91a6c4d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/crimson_blinds.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/blinds/crimson_blinds_down" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/crimson_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/item/crimson_picture_frame.json deleted file mode 100644 index eedd3181..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/crimson_picture_frame.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/crimson_flower_picture_frame" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/crimson_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/item/crimson_trellis.json deleted file mode 100644 index 882ad411..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/crimson_trellis.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/trellis/crimson/closed_trellis" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/dark_oak_blinds.json b/mod/beautify/src/main/resources/assets/beautify/models/item/dark_oak_blinds.json deleted file mode 100644 index aec7f310..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/dark_oak_blinds.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/blinds/dark_oak_blinds_down" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/dark_oak_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/item/dark_oak_picture_frame.json deleted file mode 100644 index 828e48d2..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/dark_oak_picture_frame.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/dark_oak_flower_picture_frame" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/dark_oak_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/item/dark_oak_trellis.json deleted file mode 100644 index 0dc9f07e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/dark_oak_trellis.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/trellis/dark_oak/closed_trellis" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/hanging_pot.json b/mod/beautify/src/main/resources/assets/beautify/models/item/hanging_pot.json deleted file mode 100644 index a015a383..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/hanging_pot.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/pots/base/hanging_pot" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/iron_blinds.json b/mod/beautify/src/main/resources/assets/beautify/models/item/iron_blinds.json deleted file mode 100644 index 77a5807a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/iron_blinds.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/blinds/iron_blinds_down" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/jungle_blinds.json b/mod/beautify/src/main/resources/assets/beautify/models/item/jungle_blinds.json deleted file mode 100644 index 3f840012..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/jungle_blinds.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/blinds/jungle_blinds_down" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/jungle_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/item/jungle_picture_frame.json deleted file mode 100644 index a159f46d..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/jungle_picture_frame.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/jungle_flower_picture_frame" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/jungle_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/item/jungle_trellis.json deleted file mode 100644 index 0f93b0f1..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/jungle_trellis.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/trellis/jungle/closed_trellis" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_bamboo.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_bamboo.json deleted file mode 100644 index ab93e460..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_bamboo.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/lamp_bamboo_off" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra.json deleted file mode 100644 index a0ef516c..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_black.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_black.json deleted file mode 100644 index 00be8894..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_black.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_black" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_blue.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_blue.json deleted file mode 100644 index be809d33..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_blue.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_blue" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_brown.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_brown.json deleted file mode 100644 index 4bcea5ff..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_brown.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_brown" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_cyan.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_cyan.json deleted file mode 100644 index b3dfca4e..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_cyan.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_cyan" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_gray.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_gray.json deleted file mode 100644 index 0e6a97a3..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_gray.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_gray" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_green.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_green.json deleted file mode 100644 index 28c216bb..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_green.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_green" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_light_blue.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_light_blue.json deleted file mode 100644 index 6620567f..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_light_blue.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_blue" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_light_gray.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_light_gray.json deleted file mode 100644 index 9ab46ac7..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_light_gray.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_gray" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_lime.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_lime.json deleted file mode 100644 index bf8c9bd6..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_lime.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_lime" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_magenta.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_magenta.json deleted file mode 100644 index c28f2001..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_magenta.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_magenta" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_orange.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_orange.json deleted file mode 100644 index 75a6f5aa..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_orange.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_orange" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_pink.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_pink.json deleted file mode 100644 index 984f6451..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_pink.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_pink" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_purple.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_purple.json deleted file mode 100644 index 26a14d4a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_purple.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_purple" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_red.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_red.json deleted file mode 100644 index d40a0f6a..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_red.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_red" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_white.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_white.json deleted file mode 100644 index 61b01c48..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_white.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_white" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_yellow.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_yellow.json deleted file mode 100644 index b3dee1c4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_candleabra_yellow.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_yellow" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_jar.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_jar.json deleted file mode 100644 index 6a5f7607..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_jar.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/standing_lamp_jar" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_light_bulb.json b/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_light_bulb.json deleted file mode 100644 index 8d6268fb..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/lamp_light_bulb.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/light_bulb" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/mangrove_blinds.json b/mod/beautify/src/main/resources/assets/beautify/models/item/mangrove_blinds.json deleted file mode 100644 index 368a1a14..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/mangrove_blinds.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/blinds/mangrove_blinds_down" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/mangrove_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/item/mangrove_picture_frame.json deleted file mode 100644 index 680284c4..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/mangrove_picture_frame.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/mangrove_flower_picture_frame" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/mangrove_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/item/mangrove_trellis.json deleted file mode 100644 index dc9c9596..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/mangrove_trellis.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/trellis/mangrove/closed_trellis" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/oak_blinds.json b/mod/beautify/src/main/resources/assets/beautify/models/item/oak_blinds.json deleted file mode 100644 index cf084809..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/oak_blinds.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/blinds/oak_blinds_down" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/oak_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/item/oak_picture_frame.json deleted file mode 100644 index 06d710f5..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/oak_picture_frame.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/oak_flower_picture_frame" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/oak_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/item/oak_trellis.json deleted file mode 100644 index b1e6c1a1..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/oak_trellis.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/trellis/oak/closed_trellis" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/quartz_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/item/quartz_picture_frame.json deleted file mode 100644 index d07bb1a0..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/quartz_picture_frame.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/quartz_flower_picture_frame" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/rope.json b/mod/beautify/src/main/resources/assets/beautify/models/item/rope.json deleted file mode 100644 index cae55489..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/rope.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "beautify:item/rope" - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/spruce_blinds.json b/mod/beautify/src/main/resources/assets/beautify/models/item/spruce_blinds.json deleted file mode 100644 index 646b4008..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/spruce_blinds.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/blinds/spruce_blinds_down" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/spruce_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/item/spruce_picture_frame.json deleted file mode 100644 index 19659540..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/spruce_picture_frame.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/spruce_flower_picture_frame" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/spruce_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/item/spruce_trellis.json deleted file mode 100644 index 207e9856..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/spruce_trellis.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/trellis/spruce/closed_trellis" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/warped_blinds.json b/mod/beautify/src/main/resources/assets/beautify/models/item/warped_blinds.json deleted file mode 100644 index c89b6c87..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/warped_blinds.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/blinds/warped_blinds_down" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/warped_picture_frame.json b/mod/beautify/src/main/resources/assets/beautify/models/item/warped_picture_frame.json deleted file mode 100644 index 3b8bf7b2..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/warped_picture_frame.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/pictureframes/warped_flower_picture_frame" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/item/warped_trellis.json b/mod/beautify/src/main/resources/assets/beautify/models/item/warped_trellis.json deleted file mode 100644 index 16b6ffd9..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/models/item/warped_trellis.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/trellis/warped/closed_trellis" -} diff --git a/mod/beautify/src/main/resources/assets/beautify/particles/glowessence_particles.json b/mod/beautify/src/main/resources/assets/beautify/particles/glowessence_particles.json deleted file mode 100644 index c34b8b96..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/particles/glowessence_particles.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": [ - "beautify:glowessence_particle" - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/sounds.json b/mod/beautify/src/main/resources/assets/beautify/sounds.json deleted file mode 100644 index be8f5800..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/sounds.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "block.bookstack_break": { - "subtitle": "sounds.beautify.bookstack_break", - "sounds": [ - "beautify:bookstack_break" - ] - }, - "block.bookstack_step": { - "subtitle": "sounds.beautify.bookstack_step", - "sounds": [ - "beautify:bookstack_step" - ] - }, - "block.bookstack_place": { - "subtitle": "sounds.beautify.bookstack_place", - "sounds": [ - "beautify:bookstack_place" - ] - }, - "block.bookstack_hit": { - "subtitle": "sounds.beautify.bookstack_hit", - "sounds": [ - "beautify:bookstack_hit" - ] - }, - "block.bookstack_fall": { - "subtitle": "sounds.beautify.bookstack_fall", - "sounds": [ - "beautify:bookstack_fall" - ] - }, - "block.bookstack_next": { - "subtitle": "sounds.beautify.bookstack_next", - "sounds": [ - "beautify:bookstack_next" - ] - }, - "block.blinds_open": { - "subtitle": "sounds.beautify.blinds_open", - "sounds": [ - "beautify:blinds_open" - ] - }, - "block.blinds_close": { - "subtitle": "sounds.beautify.blinds_close", - "sounds": [ - "beautify:blinds_close" - ] - } -} diff --git a/mod/beautify/src/main/resources/assets/beautify/sounds/blinds_close.ogg b/mod/beautify/src/main/resources/assets/beautify/sounds/blinds_close.ogg deleted file mode 100644 index be2d2c61..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/sounds/blinds_close.ogg and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/sounds/blinds_open.ogg b/mod/beautify/src/main/resources/assets/beautify/sounds/blinds_open.ogg deleted file mode 100644 index 16a24afb..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/sounds/blinds_open.ogg and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/sounds/bookstack_break.ogg b/mod/beautify/src/main/resources/assets/beautify/sounds/bookstack_break.ogg deleted file mode 100644 index dd474341..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/sounds/bookstack_break.ogg and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/sounds/bookstack_fall.ogg b/mod/beautify/src/main/resources/assets/beautify/sounds/bookstack_fall.ogg deleted file mode 100644 index 2abdcfea..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/sounds/bookstack_fall.ogg and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/sounds/bookstack_hit.ogg b/mod/beautify/src/main/resources/assets/beautify/sounds/bookstack_hit.ogg deleted file mode 100644 index 8c6e8016..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/sounds/bookstack_hit.ogg and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/sounds/bookstack_next.ogg b/mod/beautify/src/main/resources/assets/beautify/sounds/bookstack_next.ogg deleted file mode 100644 index 11b20a3a..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/sounds/bookstack_next.ogg and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/sounds/bookstack_place.ogg b/mod/beautify/src/main/resources/assets/beautify/sounds/bookstack_place.ogg deleted file mode 100644 index 1bd30c74..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/sounds/bookstack_place.ogg and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/sounds/bookstack_step.ogg b/mod/beautify/src/main/resources/assets/beautify/sounds/bookstack_step.ogg deleted file mode 100644 index ffec1ff3..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/sounds/bookstack_step.ogg and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/acacia_frame_texture.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/acacia_frame_texture.png deleted file mode 100644 index aa2daec1..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/acacia_frame_texture.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/bamboo_lamp_off.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/bamboo_lamp_off.png deleted file mode 100644 index e774cb3c..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/bamboo_lamp_off.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/bamboo_lamp_on.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/bamboo_lamp_on.png deleted file mode 100644 index c8cbfbb8..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/bamboo_lamp_on.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/birch_frame_texture.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/birch_frame_texture.png deleted file mode 100644 index 0c8990e3..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/birch_frame_texture.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_0.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_0.png deleted file mode 100644 index e981f159..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_0.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_1.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_1.png deleted file mode 100644 index 20e3e7fe..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_1.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_2.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_2.png deleted file mode 100644 index 34f0fd95..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_2.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_3.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_3.png deleted file mode 100644 index d6088abc..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_3.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_4.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_4.png deleted file mode 100644 index 17740d0f..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_4.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_5.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_5.png deleted file mode 100644 index abec4c85..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_5.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_6.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_6.png deleted file mode 100644 index 5807e1cc..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/bookstack_6.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/chain.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/chain.png deleted file mode 100644 index 90b2e6a5..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/chain.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/cherry_frame_texture.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/cherry_frame_texture.png deleted file mode 100644 index f0a64b9a..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/cherry_frame_texture.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/crimson_frame_texture.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/crimson_frame_texture.png deleted file mode 100644 index dd59272d..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/crimson_frame_texture.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/dark_oak_frame_texture.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/dark_oak_frame_texture.png deleted file mode 100644 index 64ebeef3..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/dark_oak_frame_texture.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/desktop.ini b/mod/beautify/src/main/resources/assets/beautify/textures/block/desktop.ini deleted file mode 100644 index 11ff8455..00000000 --- a/mod/beautify/src/main/resources/assets/beautify/textures/block/desktop.ini +++ /dev/null @@ -1,2 +0,0 @@ -[LocalizedFileNames] -cherry_frame_texture.png=@cherry_frame_texture.png,0 diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/empty.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/empty.png deleted file mode 100644 index f0215424..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/empty.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/hanging_light_bulb_off.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/hanging_light_bulb_off.png deleted file mode 100644 index 47f3d807..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/hanging_light_bulb_off.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/hanging_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/hanging_pot.png deleted file mode 100644 index 4ac1a761..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/hanging_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/jar.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/jar.png deleted file mode 100644 index 1d579ec1..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/jar.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/jungle_frame_texture.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/jungle_frame_texture.png deleted file mode 100644 index 457c9de5..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/jungle_frame_texture.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/light_bulb.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/light_bulb.png deleted file mode 100644 index 28b81d9c..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/light_bulb.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/mangrove_frame_texture.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/mangrove_frame_texture.png deleted file mode 100644 index d9ced8de..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/mangrove_frame_texture.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_alban.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_alban.png deleted file mode 100644 index e7deea08..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_alban.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_aztec.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_aztec.png deleted file mode 100644 index e5d2e639..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_aztec.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_aztec2.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_aztec2.png deleted file mode 100644 index f9f12062..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_aztec2.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_beach.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_beach.png deleted file mode 100644 index 74a010fa..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_beach.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_bomb.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_bomb.png deleted file mode 100644 index 8f3eed1f..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_bomb.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_flower.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_flower.png deleted file mode 100644 index 44fa4e1f..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_flower.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_frog.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_frog.png deleted file mode 100644 index c3235915..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_frog.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_kebab.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_kebab.png deleted file mode 100644 index ab8b5537..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_kebab.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_plant.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_plant.png deleted file mode 100644 index 658594fc..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_plant.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_river.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_river.png deleted file mode 100644 index 5df33593..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_river.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_shroom.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_shroom.png deleted file mode 100644 index 28e442c2..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_shroom.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_sunset.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_sunset.png deleted file mode 100644 index 1b4819d5..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_sunset.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_wasteland.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_wasteland.png deleted file mode 100644 index 91217c50..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/motive_wasteland.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/oak_frame_texture.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/oak_frame_texture.png deleted file mode 100644 index c0054410..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/oak_frame_texture.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/allium_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/allium_pot.png deleted file mode 100644 index fe2b218e..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/allium_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/allium_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/allium_pot_grown.png deleted file mode 100644 index ec699130..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/allium_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/azure_bluet_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/azure_bluet_pot.png deleted file mode 100644 index afaa46d9..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/azure_bluet_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/azure_bluet_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/azure_bluet_pot_grown.png deleted file mode 100644 index 2c886ce7..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/azure_bluet_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/berry_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/berry_pot.png deleted file mode 100644 index 8ded6091..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/berry_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/berry_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/berry_pot_grown.png deleted file mode 100644 index a5417b59..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/berry_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/cornflower_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/cornflower_pot.png deleted file mode 100644 index e3970ee8..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/cornflower_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/cornflower_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/cornflower_pot_grown.png deleted file mode 100644 index b8ce30c5..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/cornflower_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/dandelion_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/dandelion_pot.png deleted file mode 100644 index ce67fe5f..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/dandelion_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/dandelion_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/dandelion_pot_grown.png deleted file mode 100644 index 3c9504e7..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/dandelion_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/fern_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/fern_pot.png deleted file mode 100644 index 9b9610f5..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/fern_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/fern_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/fern_pot_grown.png deleted file mode 100644 index 27a1c1ba..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/fern_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/glow_lichen_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/glow_lichen_pot.png deleted file mode 100644 index f77421ce..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/glow_lichen_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/glow_lichen_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/glow_lichen_pot_grown.png deleted file mode 100644 index 23e9c84d..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/glow_lichen_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/glow_lichen_pot_overlay.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/glow_lichen_pot_overlay.png deleted file mode 100644 index b8784653..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/glow_lichen_pot_overlay.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/glow_lichen_pot_overlay_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/glow_lichen_pot_overlay_grown.png deleted file mode 100644 index 0cafdec1..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/glow_lichen_pot_overlay_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/glowberry_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/glowberry_pot.png deleted file mode 100644 index 4458bfe6..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/glowberry_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/glowberry_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/glowberry_pot_grown.png deleted file mode 100644 index 9b930143..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/glowberry_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/grass_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/grass_pot.png deleted file mode 100644 index 9d1122b6..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/grass_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/grass_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/grass_pot_grown.png deleted file mode 100644 index f1d067aa..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/grass_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/lilac_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/lilac_pot.png deleted file mode 100644 index 28405637..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/lilac_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/lilac_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/lilac_pot_grown.png deleted file mode 100644 index edb87470..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/lilac_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/lily_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/lily_pot.png deleted file mode 100644 index 1662bbf2..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/lily_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/lily_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/lily_pot_grown.png deleted file mode 100644 index 1ae40c76..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/lily_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/orange_tulip_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/orange_tulip_pot.png deleted file mode 100644 index dc4a674c..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/orange_tulip_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/orange_tulip_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/orange_tulip_pot_grown.png deleted file mode 100644 index e9c3be30..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/orange_tulip_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/orchid_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/orchid_pot.png deleted file mode 100644 index 09b56512..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/orchid_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/orchid_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/orchid_pot_grown.png deleted file mode 100644 index 735604b9..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/orchid_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/oxeye_daisy_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/oxeye_daisy_pot.png deleted file mode 100644 index 9075b027..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/oxeye_daisy_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/oxeye_daisy_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/oxeye_daisy_pot_grown.png deleted file mode 100644 index ced45109..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/oxeye_daisy_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/peony_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/peony_pot.png deleted file mode 100644 index bb509686..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/peony_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/peony_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/peony_pot_grown.png deleted file mode 100644 index 3b71debb..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/peony_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/pink_tulip_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/pink_tulip_pot.png deleted file mode 100644 index fced8416..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/pink_tulip_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/pink_tulip_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/pink_tulip_pot_grown.png deleted file mode 100644 index 3e9762f0..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/pink_tulip_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/poppy_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/poppy_pot.png deleted file mode 100644 index b68d3eed..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/poppy_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/poppy_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/poppy_pot_grown.png deleted file mode 100644 index 9ed2581f..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/poppy_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/red_tulip_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/red_tulip_pot.png deleted file mode 100644 index 0427cbb7..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/red_tulip_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/red_tulip_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/red_tulip_pot_grown.png deleted file mode 100644 index 41ffd236..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/red_tulip_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/rose_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/rose_pot.png deleted file mode 100644 index cda8f752..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/rose_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/rose_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/rose_pot_grown.png deleted file mode 100644 index b5d945a1..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/rose_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/sunflower_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/sunflower_pot.png deleted file mode 100644 index 35ce6402..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/sunflower_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/sunflower_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/sunflower_pot_grown.png deleted file mode 100644 index a0591197..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/sunflower_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/twisting_vines_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/twisting_vines_pot.png deleted file mode 100644 index 12ec23e8..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/twisting_vines_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/twisting_vines_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/twisting_vines_pot_grown.png deleted file mode 100644 index 5eddfb7c..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/twisting_vines_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/vine_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/vine_pot.png deleted file mode 100644 index 1eee3aff..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/vine_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/vine_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/vine_pot_grown.png deleted file mode 100644 index 28a7e815..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/vine_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/vine_pot_overlay.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/vine_pot_overlay.png deleted file mode 100644 index 2c6c0113..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/vine_pot_overlay.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/vine_pot_overlay_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/vine_pot_overlay_grown.png deleted file mode 100644 index 0254bacd..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/vine_pot_overlay_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/weeping_vines_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/weeping_vines_pot.png deleted file mode 100644 index 27acf0d3..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/weeping_vines_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/weeping_vines_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/weeping_vines_pot_grown.png deleted file mode 100644 index 81a8b6d1..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/weeping_vines_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/white_tulip_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/white_tulip_pot.png deleted file mode 100644 index 08bad1df..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/white_tulip_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/white_tulip_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/white_tulip_pot_grown.png deleted file mode 100644 index ca81b64c..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/white_tulip_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/wither_rose_pot.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/wither_rose_pot.png deleted file mode 100644 index 8f5fb9ee..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/wither_rose_pot.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/wither_rose_pot_grown.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/wither_rose_pot_grown.png deleted file mode 100644 index 65fcc175..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/pots/wither_rose_pot_grown.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/quartz_frame_texture.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/quartz_frame_texture.png deleted file mode 100644 index 870e8d29..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/quartz_frame_texture.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/rope_texture.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/rope_texture.png deleted file mode 100644 index f4ff360b..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/rope_texture.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/simple_birch.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/simple_birch.png deleted file mode 100644 index 6753a731..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/simple_birch.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/spruce_frame_texture.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/spruce_frame_texture.png deleted file mode 100644 index 76bf2438..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/spruce_frame_texture.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/standing_light_bulb.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/standing_light_bulb.png deleted file mode 100644 index c59dafe7..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/standing_light_bulb.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/standing_light_bulb_off.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/standing_light_bulb_off.png deleted file mode 100644 index e29999d4..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/standing_light_bulb_off.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_lichen_back.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_lichen_back.png deleted file mode 100644 index fe7c067a..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_lichen_back.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_lichen_front.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_lichen_front.png deleted file mode 100644 index d35e0cf5..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_lichen_front.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_lichen_hanging.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_lichen_hanging.png deleted file mode 100644 index c0da2bcf..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_lichen_hanging.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_lilac_back.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_lilac_back.png deleted file mode 100644 index 01be3e4e..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_lilac_back.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_lilac_front.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_lilac_front.png deleted file mode 100644 index 0ae4dbd4..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_lilac_front.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_lilac_hanging.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_lilac_hanging.png deleted file mode 100644 index ab87088e..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_lilac_hanging.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_peony_back.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_peony_back.png deleted file mode 100644 index ef56334c..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_peony_back.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_peony_front.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_peony_front.png deleted file mode 100644 index 1118f909..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_peony_front.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_peony_hanging.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_peony_hanging.png deleted file mode 100644 index 0ed18b69..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_peony_hanging.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_rose_back.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_rose_back.png deleted file mode 100644 index 23a3d74d..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_rose_back.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_rose_front.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_rose_front.png deleted file mode 100644 index f17e1548..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_rose_front.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_rose_hanging.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_rose_hanging.png deleted file mode 100644 index 4caa39e7..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_rose_hanging.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_sunflower_back.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_sunflower_back.png deleted file mode 100644 index 99d21a9c..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_sunflower_back.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_sunflower_front.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_sunflower_front.png deleted file mode 100644 index 1391d693..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_sunflower_front.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_sunflower_hanging.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_sunflower_hanging.png deleted file mode 100644 index 721fa703..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_sunflower_hanging.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_twisting_vines_back.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_twisting_vines_back.png deleted file mode 100644 index 176ddcbb..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_twisting_vines_back.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_twisting_vines_front.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_twisting_vines_front.png deleted file mode 100644 index 6ef788b3..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_twisting_vines_front.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_twisting_vines_hanging.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_twisting_vines_hanging.png deleted file mode 100644 index 749d815e..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_twisting_vines_hanging.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_vine_back.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_vine_back.png deleted file mode 100644 index f1d12b10..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_vine_back.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_vine_front.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_vine_front.png deleted file mode 100644 index 1c28154e..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_vine_front.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_vine_hanging.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_vine_hanging.png deleted file mode 100644 index 18d3f769..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_vine_hanging.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_weeping_vines_back.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_weeping_vines_back.png deleted file mode 100644 index 7b0a2b52..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_weeping_vines_back.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_weeping_vines_front.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_weeping_vines_front.png deleted file mode 100644 index 65d7b79f..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_weeping_vines_front.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_weeping_vines_hanging.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_weeping_vines_hanging.png deleted file mode 100644 index 9e60509e..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/trellis_weeping_vines_hanging.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/block/warped_frame_texture.png b/mod/beautify/src/main/resources/assets/beautify/textures/block/warped_frame_texture.png deleted file mode 100644 index 9ef3247c..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/block/warped_frame_texture.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/entity/villager/profession/botanist.png b/mod/beautify/src/main/resources/assets/beautify/textures/entity/villager/profession/botanist.png deleted file mode 100644 index 81b7842c..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/entity/villager/profession/botanist.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/entity/zombie_villager/profession/botanist.png b/mod/beautify/src/main/resources/assets/beautify/textures/entity/zombie_villager/profession/botanist.png deleted file mode 100644 index 81b7842c..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/entity/zombie_villager/profession/botanist.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/item/rope.png b/mod/beautify/src/main/resources/assets/beautify/textures/item/rope.png deleted file mode 100644 index 16089c1e..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/item/rope.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/assets/beautify/textures/particle/glowessence_particle.png b/mod/beautify/src/main/resources/assets/beautify/textures/particle/glowessence_particle.png deleted file mode 100644 index 51b92bbe..00000000 Binary files a/mod/beautify/src/main/resources/assets/beautify/textures/particle/glowessence_particle.png and /dev/null differ diff --git a/mod/beautify/src/main/resources/beautify.accesswidener b/mod/beautify/src/main/resources/beautify.accesswidener deleted file mode 100644 index 0c7ed181..00000000 --- a/mod/beautify/src/main/resources/beautify.accesswidener +++ /dev/null @@ -1,5 +0,0 @@ -accessWidener v1 named - -accessible field net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool templates Lit/unimi/dsi/fastutil/objects/ObjectArrayList; -accessible field net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool rawTemplates Ljava/util/List; -mutable field net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool rawTemplates Ljava/util/List; \ No newline at end of file diff --git a/mod/beautify/src/main/resources/beautify.mixins.json b/mod/beautify/src/main/resources/beautify.mixins.json deleted file mode 100644 index 0685136b..00000000 --- a/mod/beautify/src/main/resources/beautify.mixins.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "required": true, - "minVersion": "0.8", - "package": "com.github.suel_ki.beautify.mixin", - "compatibilityLevel": "JAVA_17", - "refmap": "beautify-refmap.json", - "mixins": [ - "EnchantmentTableBlockMixin" - ], - "client": [ - ], - "injectors": { - "defaultRequire": 1 - } -} diff --git a/mod/beautify/src/main/resources/data/beautify/advancements/blinds.json b/mod/beautify/src/main/resources/data/beautify/advancements/blinds.json deleted file mode 100644 index 4cb5d64e..00000000 --- a/mod/beautify/src/main/resources/data/beautify/advancements/blinds.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "requirement": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:stick" - ], - "min": 1 - } - ] - } - } - }, - "rewards": { - "recipes": [ - "beautify:oak_blinds", - "beautify:spruce_blinds", - "beautify:birch_blinds", - "beautify:dar_oak_blinds", - "beautify:jungle_blinds", - "beautify:crimson_blinds", - "beautify:cherry_blinds", - "beautify:acacia_blinds", - "beautify:warped_blinds", - "beautify:mangrove_blinds" - ] - } -} diff --git a/mod/beautify/src/main/resources/data/beautify/advancements/bookstack.json b/mod/beautify/src/main/resources/data/beautify/advancements/bookstack.json deleted file mode 100644 index e13939e5..00000000 --- a/mod/beautify/src/main/resources/data/beautify/advancements/bookstack.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "requirement": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:book" - ], - "min": 1 - } - ] - } - } - }, - "rewards": { - "recipes": [ - "beautify:bookstack" - ] - } -} diff --git a/mod/beautify/src/main/resources/data/beautify/advancements/botanist_workbench.json b/mod/beautify/src/main/resources/data/beautify/advancements/botanist_workbench.json deleted file mode 100644 index 6c9d2dd8..00000000 --- a/mod/beautify/src/main/resources/data/beautify/advancements/botanist_workbench.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "requirement": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:flower_pot" - ], - "min": 1 - } - ] - } - } - }, - "rewards": { - "recipes": [ - "beautify:botanist_workbench" - ] - } -} diff --git a/mod/beautify/src/main/resources/data/beautify/advancements/candleabras.json b/mod/beautify/src/main/resources/data/beautify/advancements/candleabras.json deleted file mode 100644 index 4a4271ff..00000000 --- a/mod/beautify/src/main/resources/data/beautify/advancements/candleabras.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "requirement": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:iron_nugget" - ], - "min": 1 - } - ] - } - } - }, - "rewards": { - "recipes": [ - "beautify:candleabra", - "beautify:candleabra_light_blue", - "beautify:candleabra_light_gray", - "beautify:candleabra_black", - "beautify:candleabra_blue", - "beautify:candleabra_brown", - "beautify:candleabra_cyan", - "beautify:candleabra_gray", - "beautify:candleabra_green", - "beautify:candleabra_lime", - "beautify:candleabra_magenta", - "beautify:candleabra_orange", - "beautify:candleabra_pink", - "beautify:candleabra_purple", - "beautify:candleabra_red", - "beautify:candleabra_white", - "beautify:candleabra_yellow" - ] - } -} diff --git a/mod/beautify/src/main/resources/data/beautify/advancements/frames.json b/mod/beautify/src/main/resources/data/beautify/advancements/frames.json deleted file mode 100644 index 3666ee1c..00000000 --- a/mod/beautify/src/main/resources/data/beautify/advancements/frames.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "requirement": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:white_wool" - ], - "min": 1 - } - ] - } - } - }, - "rewards": { - "recipes": [ - "beautify:oak_picture_frame", - "beautify:spruce_picture_frame", - "beautify:birch_picture_frame", - "beautify:dark_oak_picture_frame", - "beautify:jungle_picture_frame", - "beautify:acacia_picture_frame", - "beautify:warped_picture_frame", - "beautify:crimson_picture_frame", - "beautify:mangrove_picture_frame", - "beautify:quartz_picture_frame" - ] - } -} diff --git a/mod/beautify/src/main/resources/data/beautify/advancements/hanging_pot.json b/mod/beautify/src/main/resources/data/beautify/advancements/hanging_pot.json deleted file mode 100644 index 54b06734..00000000 --- a/mod/beautify/src/main/resources/data/beautify/advancements/hanging_pot.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "requirement": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "beautify:rope" - ], - "min": 1 - } - ] - } - } - }, - "rewards": { - "recipes": [ - "beautify:hanging_pot" - ] - } -} diff --git a/mod/beautify/src/main/resources/data/beautify/advancements/iron_blinds.json b/mod/beautify/src/main/resources/data/beautify/advancements/iron_blinds.json deleted file mode 100644 index 91c5892e..00000000 --- a/mod/beautify/src/main/resources/data/beautify/advancements/iron_blinds.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "requirement": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:iron_ingot" - ], - "min": 1 - } - ] - } - } - }, - "rewards": { - "recipes": [ - "beautify:iron_blinds" - ] - } -} diff --git a/mod/beautify/src/main/resources/data/beautify/advancements/lamp_jar.json b/mod/beautify/src/main/resources/data/beautify/advancements/lamp_jar.json deleted file mode 100644 index ca3da147..00000000 --- a/mod/beautify/src/main/resources/data/beautify/advancements/lamp_jar.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "requirement": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:glowstone_dust" - ], - "min": 1 - } - ] - } - } - }, - "rewards": { - "recipes": [ - "beautify:lamp_jar" - ] - } -} diff --git a/mod/beautify/src/main/resources/data/beautify/advancements/lamps.json b/mod/beautify/src/main/resources/data/beautify/advancements/lamps.json deleted file mode 100644 index fbac2a58..00000000 --- a/mod/beautify/src/main/resources/data/beautify/advancements/lamps.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "requirement": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:copper_ingot" - ], - "min": 1 - } - ] - } - } - }, - "rewards": { - "recipes": [ - "beautify:lamp_light_bulb", - "beautify:lamp_bamboo" - ] - } -} diff --git a/mod/beautify/src/main/resources/data/beautify/advancements/progression/blinds.json b/mod/beautify/src/main/resources/data/beautify/advancements/progression/blinds.json deleted file mode 100644 index 3f1f26da..00000000 --- a/mod/beautify/src/main/resources/data/beautify/advancements/progression/blinds.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "display": { - "icon": { - "item": "beautify:oak_blinds" - }, - "title": { - "translate": "advancements.beautify.blinds.title" - }, - "description": { - "translate": "advancements.beautify.blinds.description" - }, - "frame": "task", - "show_toast": true, - "announce_to_chat": true, - "hidden": false - }, - "parent": "beautify:progression/root", - "criteria": { - "obtain": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "beautify:oak_blinds", - "beautify:spruce_blinds", - "beautify:dark_oak_blinds", - "beautify:birch_blinds", - "beautify:acacia_blinds", - "beautify:jungle_blinds", - "beautify:warped_blinds", - "beautify:crimson_blinds", - "beautify:cherry_blinds", - "beautify:iron_blinds", - "beautify:mangrove_blinds" - ] - } - ] - } - } - } -} diff --git a/mod/beautify/src/main/resources/data/beautify/advancements/progression/bookstack.json b/mod/beautify/src/main/resources/data/beautify/advancements/progression/bookstack.json deleted file mode 100644 index ce513800..00000000 --- a/mod/beautify/src/main/resources/data/beautify/advancements/progression/bookstack.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "display": { - "icon": { - "item": "beautify:bookstack" - }, - "title": { - "translate": "advancements.beautify.bookstack.title" - }, - "description": { - "translate": "advancements.beautify.bookstack.description" - }, - "frame": "task", - "show_toast": true, - "announce_to_chat": true, - "hidden": false - }, - "parent": "beautify:progression/root", - "criteria": { - "obtain": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "beautify:bookstack" - ] - } - ] - } - } - } -} diff --git a/mod/beautify/src/main/resources/data/beautify/advancements/progression/candelabra.json b/mod/beautify/src/main/resources/data/beautify/advancements/progression/candelabra.json deleted file mode 100644 index 786e7f5f..00000000 --- a/mod/beautify/src/main/resources/data/beautify/advancements/progression/candelabra.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "display": { - "icon": { - "item": "beautify:lamp_candleabra" - }, - "title": { - "translate": "advancements.beautify.candelabra.title" - }, - "description": { - "translate": "advancements.beautify.candelabra.description" - }, - "frame": "task", - "show_toast": true, - "announce_to_chat": true, - "hidden": false - }, - "parent": "beautify:progression/root", - "criteria": { - "obtain": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "beautify:lamp_candleabra" - ] - } - ] - } - } - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/advancements/progression/hanging_pot.json b/mod/beautify/src/main/resources/data/beautify/advancements/progression/hanging_pot.json deleted file mode 100644 index 9adb9ca5..00000000 --- a/mod/beautify/src/main/resources/data/beautify/advancements/progression/hanging_pot.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "display": { - "icon": { - "item": "beautify:hanging_pot" - }, - "title": { - "translate": "advancements.beautify.hanging_pot.title" - }, - "description": { - "translate": "advancements.beautify.hanging_pot.description" - }, - "frame": "task", - "show_toast": true, - "announce_to_chat": true, - "hidden": false - }, - "parent": "beautify:progression/rope", - "criteria": { - "obtain": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "beautify:hanging_pot" - ] - } - ] - } - } - } -} diff --git a/mod/beautify/src/main/resources/data/beautify/advancements/progression/light.json b/mod/beautify/src/main/resources/data/beautify/advancements/progression/light.json deleted file mode 100644 index d39fd947..00000000 --- a/mod/beautify/src/main/resources/data/beautify/advancements/progression/light.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "display": { - "icon": { - "item": "beautify:lamp_light_bulb" - }, - "title": { - "translate": "advancements.beautify.light.title" - }, - "description": { - "translate": "advancements.beautify.light.description" - }, - "frame": "task", - "show_toast": true, - "announce_to_chat": true, - "hidden": false - }, - "parent": "beautify:progression/root", - "criteria": { - "obtain": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "beautify:lamp_jar", - "beautify:lamp_bamboo", - "beautify:lamp_light_bulb" - ] - } - ] - } - } - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/advancements/progression/root.json b/mod/beautify/src/main/resources/data/beautify/advancements/progression/root.json deleted file mode 100644 index 3872cbf9..00000000 --- a/mod/beautify/src/main/resources/data/beautify/advancements/progression/root.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "display": { - "icon": { - "item": "minecraft:rose_bush" - }, - "title": { - "translate": "advancements.beautify.root.title" - }, - "description": { - "translate": "advancements.beautify.root.description" - }, - "background": "minecraft:textures/block/spruce_planks.png", - "frame": "task", - "show_toast": false, - "announce_to_chat": false, - "hidden": false - }, - "criteria": { - "Install": { - "trigger": "minecraft:tick" - } - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/advancements/progression/rope.json b/mod/beautify/src/main/resources/data/beautify/advancements/progression/rope.json deleted file mode 100644 index 3aaf09fe..00000000 --- a/mod/beautify/src/main/resources/data/beautify/advancements/progression/rope.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "display": { - "icon": { - "item": "beautify:rope" - }, - "title": { - "translate": "advancements.beautify.rope.title" - }, - "description": { - "translate": "advancements.beautify.rope.description" - }, - "frame": "task", - "show_toast": true, - "announce_to_chat": true, - "hidden": false - }, - "parent": "beautify:progression/root", - "criteria": { - "obtain": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "beautify:rope" - ] - } - ] - } - } - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/advancements/rope.json b/mod/beautify/src/main/resources/data/beautify/advancements/rope.json deleted file mode 100644 index 42653ec9..00000000 --- a/mod/beautify/src/main/resources/data/beautify/advancements/rope.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "requirement": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:string" - ], - "min": 1 - } - ] - } - } - }, - "rewards": { - "recipes": [ - "beautify:rope" - ] - } -} diff --git a/mod/beautify/src/main/resources/data/beautify/advancements/trellis.json b/mod/beautify/src/main/resources/data/beautify/advancements/trellis.json deleted file mode 100644 index c8ade634..00000000 --- a/mod/beautify/src/main/resources/data/beautify/advancements/trellis.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "requirement": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:stick" - ], - "min": 1 - } - ] - } - } - }, - "rewards": { - "recipes": [ - "beautify:oak_trellis", - "beautify:spruce_trellis", - "beautify:birch_trellis", - "beautify:jungle_trellis", - "beautify:acacia_trellis", - "beautify:dark_oak_trellis", - "beautify:mangrove_trellis", - "beautify:crimson_trellis", - "beautify:cherry_trellis", - "beautify:warped_trellis" - ] - } -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_blinds.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_blinds.json deleted file mode 100644 index eff14e33..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_blinds.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:acacia_blinds" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_lichen_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_lichen_trellis.json deleted file mode 100644 index e9ef3756..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_lichen_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:glow_lichen", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:acacia_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_lilac_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_lilac_trellis.json deleted file mode 100644 index a85f9be1..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_lilac_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:lilac", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:acacia_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_peony_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_peony_trellis.json deleted file mode 100644 index a34a3d5a..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_peony_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:peony", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:acacia_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_picture_frame.json deleted file mode 100644 index 99827fd4..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_picture_frame.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:warped_picture_frame" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_rose_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_rose_trellis.json deleted file mode 100644 index a725d1c3..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_rose_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:rose_bush", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:acacia_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_sunflower_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_sunflower_trellis.json deleted file mode 100644 index ade012fa..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_sunflower_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:sunflower", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:acacia_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_trellis.json deleted file mode 100644 index 1ca746ac..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_trellis.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:acacia_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:acacia_trellis", - "properties": { - "flowers": "0" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/acacia_rose_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:acacia_trellis", - "properties": { - "flowers": "1" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/acacia_sunflower_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:acacia_trellis", - "properties": { - "flowers": "2" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/acacia_peony_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:acacia_trellis", - "properties": { - "flowers": "3" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/acacia_lilac_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:acacia_trellis", - "properties": { - "flowers": "4" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/acacia_vine_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:acacia_trellis", - "properties": { - "flowers": "5" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/acacia_weeping_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:acacia_trellis", - "properties": { - "flowers": "6" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/acacia_twisting_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:acacia_trellis", - "properties": { - "flowers": "7" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/acacia_lichen_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:acacia_trellis", - "properties": { - "flowers": "8" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_twisting_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_twisting_vines_trellis.json deleted file mode 100644 index 34966730..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_twisting_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:twisting_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:acacia_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_vine_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_vine_trellis.json deleted file mode 100644 index d7650226..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_vine_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:vine", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:acacia_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_weeping_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_weeping_vines_trellis.json deleted file mode 100644 index 4ed94a70..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/acacia_weeping_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:weeping_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:acacia_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/allium_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/allium_pot.json deleted file mode 100644 index 221393d2..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/allium_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:allium" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:allium", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/azure_bluet_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/azure_bluet_pot.json deleted file mode 100644 index b2b5c933..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/azure_bluet_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:azure_bluet" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:azure_bluet", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/berry_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/berry_pot.json deleted file mode 100644 index f0b9fb7d..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/berry_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:sweet_berries" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:sweet_berries", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_blinds.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_blinds.json deleted file mode 100644 index 42a8c0c7..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_blinds.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:birch_blinds" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_lichen_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_lichen_trellis.json deleted file mode 100644 index 06fc611d..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_lichen_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:glow_lichen", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:birch_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_lilac_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_lilac_trellis.json deleted file mode 100644 index 5cdaa7c6..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_lilac_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:lilac", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:birch_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_peony_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_peony_trellis.json deleted file mode 100644 index 970d062f..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_peony_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:peony", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:birch_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_picture_frame.json deleted file mode 100644 index 965fad25..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_picture_frame.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:birch_picture_frame" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_rose_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_rose_trellis.json deleted file mode 100644 index b768e30b..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_rose_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:rose_bush", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:birch_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_sunflower_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_sunflower_trellis.json deleted file mode 100644 index edbfee92..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_sunflower_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:sunflower", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:birch_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_trellis.json deleted file mode 100644 index 85c0c7bf..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_trellis.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:birch_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:birch_trellis", - "properties": { - "flowers": "0" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/birch_rose_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:birch_trellis", - "properties": { - "flowers": "1" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/birch_sunflower_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:birch_trellis", - "properties": { - "flowers": "2" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/birch_peony_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:birch_trellis", - "properties": { - "flowers": "3" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/birch_lilac_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:birch_trellis", - "properties": { - "flowers": "4" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/birch_vine_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:birch_trellis", - "properties": { - "flowers": "5" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/birch_weeping_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:birch_trellis", - "properties": { - "flowers": "6" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/birch_twisting_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:birch_trellis", - "properties": { - "flowers": "7" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/birch_lichen_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:birch_trellis", - "properties": { - "flowers": "8" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_twisting_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_twisting_vines_trellis.json deleted file mode 100644 index da64f519..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_twisting_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:twisting_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:birch_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_vine_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_vine_trellis.json deleted file mode 100644 index 504fa888..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_vine_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:vine", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:birch_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_weeping_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_weeping_vines_trellis.json deleted file mode 100644 index 890829c3..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/birch_weeping_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:weeping_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:birch_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/bookstack.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/bookstack.json deleted file mode 100644 index 8402d21a..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/bookstack.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:bookstack" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/botanist_workbench.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/botanist_workbench.json deleted file mode 100644 index 272b70d9..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/botanist_workbench.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:botanist_workbench" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_blinds.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_blinds.json deleted file mode 100644 index 784c32c4..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_blinds.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:cherry_blinds" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_lichen_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_lichen_trellis.json deleted file mode 100644 index f635f8f8..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_lichen_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:glow_lichen", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:cherry_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_lilac_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_lilac_trellis.json deleted file mode 100644 index 8cf21c48..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_lilac_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:lilac", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:cherry_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_peony_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_peony_trellis.json deleted file mode 100644 index 64ce5cfb..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_peony_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:peony", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:cherry_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_picture_frame.json deleted file mode 100644 index 97fe7430..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_picture_frame.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:cherry_picture_frame" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_rose_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_rose_trellis.json deleted file mode 100644 index e4b7d45e..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_rose_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:rose_bush", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:cherry_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_sunflower_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_sunflower_trellis.json deleted file mode 100644 index 8d68f6d7..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_sunflower_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:sunflower", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:cherry_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_trellis.json deleted file mode 100644 index d9515ef2..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_trellis.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:cherry_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:cherry_trellis", - "properties": { - "flowers": "0" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/cherry_rose_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:cherry_trellis", - "properties": { - "flowers": "1" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/cherry_sunflower_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:cherry_trellis", - "properties": { - "flowers": "2" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/cherry_peony_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:cherry_trellis", - "properties": { - "flowers": "3" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/cherry_lilac_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:cherry_trellis", - "properties": { - "flowers": "4" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/cherry_vine_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:cherry_trellis", - "properties": { - "flowers": "5" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/cherry_weeping_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:cherry_trellis", - "properties": { - "flowers": "6" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/cherry_twisting_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:cherry_trellis", - "properties": { - "flowers": "7" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/cherry_lichen_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:cherry_trellis", - "properties": { - "flowers": "8" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_twisting_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_twisting_vines_trellis.json deleted file mode 100644 index c3762f38..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_twisting_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:twisting_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:cherry_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_vine_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_vine_trellis.json deleted file mode 100644 index cd899794..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_vine_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:vine", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:cherry_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_weeping_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_weeping_vines_trellis.json deleted file mode 100644 index d51c3569..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cherry_weeping_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:weeping_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:cherry_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cornflower_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cornflower_pot.json deleted file mode 100644 index 1d516501..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/cornflower_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:cornflower" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:cornflower", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_blinds.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_blinds.json deleted file mode 100644 index 476f6b80..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_blinds.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:crimson_blinds" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_lichen_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_lichen_trellis.json deleted file mode 100644 index 585d8d8c..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_lichen_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:glow_lichen", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:crimson_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_lilac_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_lilac_trellis.json deleted file mode 100644 index d096ddd9..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_lilac_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:lilac", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:crimson_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_peony_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_peony_trellis.json deleted file mode 100644 index 46b91acd..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_peony_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:peony", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:crimson_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_picture_frame.json deleted file mode 100644 index 134781a0..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_picture_frame.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:crimson_picture_frame" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_rose_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_rose_trellis.json deleted file mode 100644 index 03066114..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_rose_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:rose_bush", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:crimson_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_sunflower_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_sunflower_trellis.json deleted file mode 100644 index 988169fb..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_sunflower_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:sunflower", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:crimson_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_trellis.json deleted file mode 100644 index 3e3c7581..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_trellis.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:crimson_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:crimson_trellis", - "properties": { - "flowers": "0" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/crimson_rose_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:crimson_trellis", - "properties": { - "flowers": "1" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/crimson_sunflower_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:crimson_trellis", - "properties": { - "flowers": "2" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/crimson_peony_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:crimson_trellis", - "properties": { - "flowers": "3" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/crimson_lilac_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:crimson_trellis", - "properties": { - "flowers": "4" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/crimson_vine_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:crimson_trellis", - "properties": { - "flowers": "5" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/crimson_weeping_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:crimson_trellis", - "properties": { - "flowers": "6" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/crimson_twisting_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:crimson_trellis", - "properties": { - "flowers": "7" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/crimson_lichen_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:crimson_trellis", - "properties": { - "flowers": "8" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_twisting_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_twisting_vines_trellis.json deleted file mode 100644 index 6d829e60..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_twisting_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:twisting_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:crimson_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_vine_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_vine_trellis.json deleted file mode 100644 index b9b96093..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_vine_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:vine", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:crimson_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_weeping_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_weeping_vines_trellis.json deleted file mode 100644 index 2f812236..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/crimson_weeping_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:weeping_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:crimson_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dandelion_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dandelion_pot.json deleted file mode 100644 index 895d285c..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dandelion_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:dandelion" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:dandelion", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_blinds.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_blinds.json deleted file mode 100644 index 576230a2..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_blinds.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:dark_oak_blinds" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_lichen_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_lichen_trellis.json deleted file mode 100644 index ae5d38f1..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_lichen_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:glow_lichen", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:dark_oak_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_lilac_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_lilac_trellis.json deleted file mode 100644 index 62737fda..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_lilac_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:lilac", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:dark_oak_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_peony_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_peony_trellis.json deleted file mode 100644 index 8b00feee..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_peony_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:peony", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:dark_oak_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_picture_frame.json deleted file mode 100644 index b5729cab..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_picture_frame.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:dark_oak_picture_frame" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_rose_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_rose_trellis.json deleted file mode 100644 index 447633cd..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_rose_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:rose_bush", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:dark_oak_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_sunflower_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_sunflower_trellis.json deleted file mode 100644 index 1e2d6250..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_sunflower_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:sunflower", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:dark_oak_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_trellis.json deleted file mode 100644 index 7750fef3..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_trellis.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:dark_oak_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:dark_oak_trellis", - "properties": { - "flowers": "0" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/dark_oak_rose_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:dark_oak_trellis", - "properties": { - "flowers": "1" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/dark_oak_sunflower_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:dark_oak_trellis", - "properties": { - "flowers": "2" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/dark_oak_peony_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:dark_oak_trellis", - "properties": { - "flowers": "3" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/dark_oak_lilac_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:dark_oak_trellis", - "properties": { - "flowers": "4" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/dark_oak_vine_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:dark_oak_trellis", - "properties": { - "flowers": "5" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/dark_oak_weeping_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:dark_oak_trellis", - "properties": { - "flowers": "6" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/dark_oak_twisting_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:dark_oak_trellis", - "properties": { - "flowers": "7" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/dark_oak_lichen_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:dark_oak_trellis", - "properties": { - "flowers": "8" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_twisting_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_twisting_vines_trellis.json deleted file mode 100644 index f899291e..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_twisting_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:twisting_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:dark_oak_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_vine_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_vine_trellis.json deleted file mode 100644 index df56797d..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_vine_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:vine", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:dark_oak_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_weeping_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_weeping_vines_trellis.json deleted file mode 100644 index 42d88553..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_weeping_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:weeping_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:dark_oak_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/fern_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/fern_pot.json deleted file mode 100644 index 6585c590..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/fern_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:fern" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:fern", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/glow_lichen_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/glow_lichen_pot.json deleted file mode 100644 index 65148291..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/glow_lichen_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:glow_lichen" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:glow_lichen", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/glowberry_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/glowberry_pot.json deleted file mode 100644 index b88a3179..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/glowberry_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:glow_berries" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:glow_berries", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/grass_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/grass_pot.json deleted file mode 100644 index 806e3768..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/grass_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:grass" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:grass", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/hanging_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/hanging_pot.json deleted file mode 100644 index 7b7a5a97..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/hanging_pot.json +++ /dev/null @@ -1,361 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "0" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/rose_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "1" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/lilac_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "2" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/orchid_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "3" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/vines_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "4" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/sunflower_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "5" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/peony_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "6" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/azure_bluet_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "7" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/red_tulip_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "8" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/orange_tulip_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "9" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/white_tulip_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "10" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/pink_tulip_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "11" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/allium_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "12" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/dandelion_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "13" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/poppy_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "14" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/poppy_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "14" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/glow_lichen_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "15" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/oxeye_daisy_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "16" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/lily_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "17" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/cornflower_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "18" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/weeping_vines_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "19" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/twisting_vines_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "20" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/wither_rose_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "21" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/glowberry_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "22" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/berry_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "23" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/grass_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "24" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/fern_pot", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "potflower": "25" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/iron_blinds.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/iron_blinds.json deleted file mode 100644 index a9505510..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/iron_blinds.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:iron_blinds" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_blinds.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_blinds.json deleted file mode 100644 index f18b3370..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_blinds.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:jungle_blinds" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_lichen_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_lichen_trellis.json deleted file mode 100644 index a4ddc918..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_lichen_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:glow_lichen", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:jungle_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_lilac_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_lilac_trellis.json deleted file mode 100644 index 6d148717..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_lilac_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:lilac", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:jungle_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_peony_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_peony_trellis.json deleted file mode 100644 index f2f25a8e..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_peony_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:peony", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:jungle_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_picture_frame.json deleted file mode 100644 index bd87dc9c..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_picture_frame.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:jungle_picture_frame" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_rose_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_rose_trellis.json deleted file mode 100644 index bb91aa0e..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_rose_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:rose_bush", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:jungle_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_sunflower_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_sunflower_trellis.json deleted file mode 100644 index 31e5cbbc..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_sunflower_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:sunflower", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:jungle_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_trellis.json deleted file mode 100644 index 056a6542..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_trellis.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:jungle_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:jungle_trellis", - "properties": { - "flowers": "0" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/jungle_rose_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:jungle_trellis", - "properties": { - "flowers": "1" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/jungle_sunflower_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:jungle_trellis", - "properties": { - "flowers": "2" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/jungle_peony_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:jungle_trellis", - "properties": { - "flowers": "3" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/jungle_lilac_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:jungle_trellis", - "properties": { - "flowers": "4" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/jungle_vine_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:jungle_trellis", - "properties": { - "flowers": "5" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/jungle_weeping_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:jungle_trellis", - "properties": { - "flowers": "6" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/jungle_twisting_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:jungle_trellis", - "properties": { - "flowers": "7" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/jungle_lichen_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:jungle_trellis", - "properties": { - "flowers": "8" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_twisting_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_twisting_vines_trellis.json deleted file mode 100644 index 97b299a8..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_twisting_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:twisting_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:jungle_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_vine_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_vine_trellis.json deleted file mode 100644 index 97974edc..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_vine_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:vine", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:jungle_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_weeping_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_weeping_vines_trellis.json deleted file mode 100644 index 6c947556..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/jungle_weeping_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:weeping_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:jungle_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_bamboo.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_bamboo.json deleted file mode 100644 index bfe84b1f..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_bamboo.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_bamboo" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra.json deleted file mode 100644 index f22d026c..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_black.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_black.json deleted file mode 100644 index a61b2206..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_black.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_black" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_blue.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_blue.json deleted file mode 100644 index a12f067d..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_blue.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_blue" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_brown.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_brown.json deleted file mode 100644 index b3a1949e..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_brown.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_brown" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_cyan.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_cyan.json deleted file mode 100644 index 0c62efea..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_cyan.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_cyan" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_gray.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_gray.json deleted file mode 100644 index 6f7357cb..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_gray.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_gray" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_green.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_green.json deleted file mode 100644 index f1ad5fb9..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_green.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_green" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_light_blue.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_light_blue.json deleted file mode 100644 index bbd53dc7..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_light_blue.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_light_blue" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_light_gray.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_light_gray.json deleted file mode 100644 index bcf36055..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_light_gray.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_light_gray" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_lime.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_lime.json deleted file mode 100644 index 1792756b..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_lime.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_lime" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_magenta.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_magenta.json deleted file mode 100644 index 0af94a22..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_magenta.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_magenta" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_orange.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_orange.json deleted file mode 100644 index 08b2ae92..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_orange.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_orange" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_pink.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_pink.json deleted file mode 100644 index 13f271b9..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_pink.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_pink" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_purple.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_purple.json deleted file mode 100644 index 78dbda8f..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_purple.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_purple" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_red.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_red.json deleted file mode 100644 index 42c0aa8c..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_red.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_red" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_white.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_white.json deleted file mode 100644 index 85846fef..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_white.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_white" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_yellow.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_yellow.json deleted file mode 100644 index 977b47d5..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_yellow.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_yellow" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_jar.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_jar.json deleted file mode 100644 index abdc5249..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_jar.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_jar", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:lamp_jar", - "properties": { - "fill_level": "0" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/lamp_jar1", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:lamp_jar", - "properties": { - "fill_level": "5" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/lamp_jar2", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:lamp_jar", - "properties": { - "fill_level": "10" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/lamp_jar3", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:lamp_jar", - "properties": { - "fill_level": "15" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_jar1.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_jar1.json deleted file mode 100644 index 208c422f..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_jar1.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_jar" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:glowstone_dust" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_jar2.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_jar2.json deleted file mode 100644 index 3dce0aa2..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_jar2.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_jar" - } - ] - }, - { - "rolls": 2, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:glowstone_dust" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_jar3.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_jar3.json deleted file mode 100644 index 96d4a693..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_jar3.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_jar" - } - ] - }, - { - "rolls": 3, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:glowstone_dust" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_light_bulb.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_light_bulb.json deleted file mode 100644 index 1830be2f..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lamp_light_bulb.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_light_bulb" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lilac_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lilac_pot.json deleted file mode 100644 index 1ce96723..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lilac_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:lilac" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:lilac", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lily_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lily_pot.json deleted file mode 100644 index 66c8e15a..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/lily_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:lily_of_the_valley" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:lily_of_the_valley", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_blinds.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_blinds.json deleted file mode 100644 index 5a7844fb..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_blinds.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:mangrove_blinds" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_lichen_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_lichen_trellis.json deleted file mode 100644 index 62cdad8a..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_lichen_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:glow_lichen", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:mangrove_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_lilac_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_lilac_trellis.json deleted file mode 100644 index f31edd9f..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_lilac_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:lilac", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:mangrove_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_peony_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_peony_trellis.json deleted file mode 100644 index 8b886c98..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_peony_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:peony", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:mangrove_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_picture_frame.json deleted file mode 100644 index cfbacae4..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_picture_frame.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:mangrove_picture_frame" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_rose_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_rose_trellis.json deleted file mode 100644 index 885c2648..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_rose_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:rose_bush", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:mangrove_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_sunflower_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_sunflower_trellis.json deleted file mode 100644 index fe3912de..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_sunflower_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:sunflower", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:mangrove_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_trellis.json deleted file mode 100644 index 29355f1e..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_trellis.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:mangrove_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:mangrove_trellis", - "properties": { - "flowers": "0" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/mangrove_rose_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:mangrove_trellis", - "properties": { - "flowers": "1" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/mangrove_sunflower_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:mangrove_trellis", - "properties": { - "flowers": "2" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/mangrove_peony_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:mangrove_trellis", - "properties": { - "flowers": "3" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/mangrove_lilac_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:mangrove_trellis", - "properties": { - "flowers": "4" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/mangrove_vine_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:mangrove_trellis", - "properties": { - "flowers": "5" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/mangrove_weeping_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:mangrove_trellis", - "properties": { - "flowers": "6" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/mangrove_twisting_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:mangrove_trellis", - "properties": { - "flowers": "7" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/mangrove_lichen_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:mangrove_trellis", - "properties": { - "flowers": "8" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_twisting_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_twisting_vines_trellis.json deleted file mode 100644 index 1e6b1363..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_twisting_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:twisting_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:mangrove_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_vine_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_vine_trellis.json deleted file mode 100644 index 27c07005..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_vine_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:vine", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:mangrove_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_weeping_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_weeping_vines_trellis.json deleted file mode 100644 index 588d5c47..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/mangrove_weeping_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:weeping_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:mangrove_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_blinds.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_blinds.json deleted file mode 100644 index 4f1d8356..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_blinds.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:oak_blinds" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_lichen_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_lichen_trellis.json deleted file mode 100644 index 5bd864b9..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_lichen_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:glow_lichen", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:oak_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_lilac_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_lilac_trellis.json deleted file mode 100644 index 571bf710..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_lilac_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:lilac", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:oak_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_peony_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_peony_trellis.json deleted file mode 100644 index 41351405..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_peony_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:peony", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:oak_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_picture_frame.json deleted file mode 100644 index 1401a3de..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_picture_frame.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:oak_picture_frame" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_rose_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_rose_trellis.json deleted file mode 100644 index 11f26d7a..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_rose_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:rose_bush", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:oak_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_sunflower_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_sunflower_trellis.json deleted file mode 100644 index dfddd0f6..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_sunflower_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:sunflower", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:oak_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_trellis.json deleted file mode 100644 index 20e61779..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_trellis.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:oak_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:oak_trellis", - "properties": { - "flowers": "0" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/oak_rose_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:oak_trellis", - "properties": { - "flowers": "1" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/oak_sunflower_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:oak_trellis", - "properties": { - "flowers": "2" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/oak_peony_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:oak_trellis", - "properties": { - "flowers": "3" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/oak_lilac_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:oak_trellis", - "properties": { - "flowers": "4" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/oak_vine_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:oak_trellis", - "properties": { - "flowers": "5" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/oak_weeping_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:oak_trellis", - "properties": { - "flowers": "6" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/oak_twisting_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:oak_trellis", - "properties": { - "flowers": "7" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/oak_lichen_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:oak_trellis", - "properties": { - "flowers": "8" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_twisting_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_twisting_vines_trellis.json deleted file mode 100644 index b04e536b..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_twisting_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:twisting_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:oak_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_vine_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_vine_trellis.json deleted file mode 100644 index 98452f18..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_vine_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:vine", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:oak_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_weeping_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_weeping_vines_trellis.json deleted file mode 100644 index 06115ba7..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oak_weeping_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:weeping_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:oak_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/orange_tulip_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/orange_tulip_pot.json deleted file mode 100644 index 61468ef0..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/orange_tulip_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:orange_tulip" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:orange_tulip", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/orchid_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/orchid_pot.json deleted file mode 100644 index 57153c2c..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/orchid_pot.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:blue_orchid", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:blue_orchid", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oxeye_daisy_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oxeye_daisy_pot.json deleted file mode 100644 index 7048d9f5..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/oxeye_daisy_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:oxeye_daisy" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:oxeye_daisy", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/peony_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/peony_pot.json deleted file mode 100644 index 3d76368b..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/peony_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:peony" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:peony", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/pink_tulip_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/pink_tulip_pot.json deleted file mode 100644 index 6957b258..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/pink_tulip_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:pink_tulip" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:pink_tulip", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/poppy_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/poppy_pot.json deleted file mode 100644 index 567e83f6..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/poppy_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:poppy" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:poppy", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/quartz_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/quartz_picture_frame.json deleted file mode 100644 index 7cf55972..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/quartz_picture_frame.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:quartz_picture_frame" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/red_tulip_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/red_tulip_pot.json deleted file mode 100644 index 906b11cb..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/red_tulip_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:red_tulip" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:red_tulip", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/rope.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/rope.json deleted file mode 100644 index 9df42d61..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/rope.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:rope" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/rose_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/rose_pot.json deleted file mode 100644 index 7b13644a..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/rose_pot.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:rose_bush", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:rose_bush", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_blinds.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_blinds.json deleted file mode 100644 index 5b7d9043..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_blinds.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:spruce_blinds" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_lichen_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_lichen_trellis.json deleted file mode 100644 index 8e47ad7e..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_lichen_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:glow_lichen", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:spruce_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_lilac_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_lilac_trellis.json deleted file mode 100644 index b0370720..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_lilac_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:lilac", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:spruce_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_peony_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_peony_trellis.json deleted file mode 100644 index 13bdb0e5..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_peony_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:peony", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:spruce_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_picture_frame.json deleted file mode 100644 index 7963fe3a..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_picture_frame.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:spruce_picture_frame" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_rose_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_rose_trellis.json deleted file mode 100644 index aeb94e38..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_rose_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:rose_bush", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:spruce_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_sunflower_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_sunflower_trellis.json deleted file mode 100644 index 43aec9e6..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_sunflower_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:sunflower", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:spruce_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_trellis.json deleted file mode 100644 index 23e0e4d6..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_trellis.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:spruce_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:spruce_trellis", - "properties": { - "flowers": "0" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/spruce_rose_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:spruce_trellis", - "properties": { - "flowers": "1" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/spruce_sunflower_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:spruce_trellis", - "properties": { - "flowers": "2" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/spruce_peony_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:spruce_trellis", - "properties": { - "flowers": "3" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/spruce_lilac_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:spruce_trellis", - "properties": { - "flowers": "4" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/spruce_vine_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:spruce_trellis", - "properties": { - "flowers": "5" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/spruce_weeping_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:spruce_trellis", - "properties": { - "flowers": "6" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/spruce_twisting_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:spruce_trellis", - "properties": { - "flowers": "7" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/spruce_lichen_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:spruce_trellis", - "properties": { - "flowers": "8" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_twisting_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_twisting_vines_trellis.json deleted file mode 100644 index bf32abc0..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_twisting_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:twisting_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:spruce_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_vine_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_vine_trellis.json deleted file mode 100644 index e0118271..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_vine_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:vine", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:spruce_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_weeping_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_weeping_vines_trellis.json deleted file mode 100644 index 65ef6ca3..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/spruce_weeping_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:weeping_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:spruce_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/sunflower_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/sunflower_pot.json deleted file mode 100644 index fdaaccc2..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/sunflower_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:sunflower" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:sunflower", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/twisting_vines_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/twisting_vines_pot.json deleted file mode 100644 index e000380c..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/twisting_vines_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:twisting_vines" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:twisting_vines", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/vines_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/vines_pot.json deleted file mode 100644 index c8c2ec6a..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/vines_pot.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:vine", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:vine", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_blinds.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_blinds.json deleted file mode 100644 index 3720d243..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_blinds.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:warped_blinds" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_lichen_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_lichen_trellis.json deleted file mode 100644 index d9bee7e4..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_lichen_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:glow_lichen", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:warped_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_lilac_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_lilac_trellis.json deleted file mode 100644 index c827be19..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_lilac_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:lilac", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:warped_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_peony_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_peony_trellis.json deleted file mode 100644 index 171813e4..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_peony_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:peony", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:warped_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_picture_frame.json deleted file mode 100644 index d366a6b5..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_picture_frame.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:acacia_picture_frame" - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_rose_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_rose_trellis.json deleted file mode 100644 index 70afc6a3..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_rose_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:rose_bush", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:warped_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_sunflower_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_sunflower_trellis.json deleted file mode 100644 index 739c6b4d..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_sunflower_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:sunflower", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:warped_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_trellis.json deleted file mode 100644 index dab7bb49..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_trellis.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:warped_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:warped_trellis", - "properties": { - "flowers": "0" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/warped_rose_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:warped_trellis", - "properties": { - "flowers": "1" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/warped_sunflower_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:warped_trellis", - "properties": { - "flowers": "2" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/warped_peony_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:warped_trellis", - "properties": { - "flowers": "3" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/warped_lilac_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:warped_trellis", - "properties": { - "flowers": "4" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/warped_vine_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:warped_trellis", - "properties": { - "flowers": "5" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/warped_weeping_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:warped_trellis", - "properties": { - "flowers": "6" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/warped_twisting_vines_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:warped_trellis", - "properties": { - "flowers": "7" - } - } - ] - }, - { - "type": "minecraft:loot_table", - "name": "beautify:blocks/warped_lichen_trellis", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:warped_trellis", - "properties": { - "flowers": "8" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_twisting_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_twisting_vines_trellis.json deleted file mode 100644 index f7000916..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_twisting_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:twisting_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:warped_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_vine_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_vine_trellis.json deleted file mode 100644 index 468ee026..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_vine_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:vine", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:warped_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_weeping_vines_trellis.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_weeping_vines_trellis.json deleted file mode 100644 index 5dd69681..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/warped_weeping_vines_trellis.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:weeping_vines", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:warped_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": 1 - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/weeping_vines_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/weeping_vines_pot.json deleted file mode 100644 index a86e584d..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/weeping_vines_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:weeping_vines" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:weeping_vines", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/white_tulip_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/white_tulip_pot.json deleted file mode 100644 index 3bdc61d1..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/white_tulip_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:white_tulip" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:white_tulip", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/wither_rose_pot.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/wither_rose_pot.json deleted file mode 100644 index 453a4ee8..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/blocks/wither_rose_pot.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:hanging_pot" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:wither_rose" - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:wither_rose", - "conditions": [ - { - "condition": "minecraft:block_state_property", - "block": "beautify:hanging_pot", - "properties": { - "grown": "true" - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/chests/botanist/botanist_chest.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/chests/botanist/botanist_chest.json deleted file mode 100644 index d8a9c0d3..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/chests/botanist/botanist_chest.json +++ /dev/null @@ -1,175 +0,0 @@ -{ - "type": "minecraft:chest", - "pools": [ - { - "rolls": 1, - "bonus_rolls": 0, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:iron_hoe", - "functions": [ - { - "function": "minecraft:enchant_randomly" - } - ] - } - ] - }, - { - "rolls": { - "type": "minecraft:uniform", - "min": 1, - "max": 2 - }, - "bonus_rolls": 0, - "entries": [ - { - "type": "minecraft:item", - "weight": 15, - "name": "minecraft:cornflower", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "min": 2, - "max": 7 - }, - "add": false - } - ] - }, - { - "type": "minecraft:item", - "weight": 15, - "name": "minecraft:dandelion", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 7 - }, - "add": false - } - ] - }, - { - "type": "minecraft:item", - "weight": 8, - "name": "minecraft:oak_sapling", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 8 - } - } - ] - }, - { - "type": "minecraft:item", - "weight": 8, - "name": "minecraft:birch_sapling", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 8 - } - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "weight": 15, - "name": "beautify:hanging_pot", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 1, - "max": 3 - } - } - ] - }, - { - "type": "minecraft:item", - "weight": 10, - "name": "minecraft:flower_pot", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 1, - "max": 3 - } - } - ] - }, - { - "type": "minecraft:item", - "weight": 7, - "name": "beautify:oak_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 8 - } - } - ] - }, - { - "type": "minecraft:item", - "weight": 7, - "name": "beautify:birch_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 8 - } - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:bone_meal", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 5, - "max": 25 - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/chests/botanist/botanist_chest_desert.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/chests/botanist/botanist_chest_desert.json deleted file mode 100644 index ee042157..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/chests/botanist/botanist_chest_desert.json +++ /dev/null @@ -1,160 +0,0 @@ -{ - "type": "minecraft:chest", - "pools": [ - { - "rolls": 1, - "bonus_rolls": 0, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:iron_hoe", - "functions": [ - { - "function": "minecraft:enchant_randomly" - } - ] - } - ] - }, - { - "rolls": { - "type": "minecraft:uniform", - "min": 1, - "max": 2 - }, - "bonus_rolls": 0, - "entries": [ - { - "type": "minecraft:item", - "weight": 15, - "name": "minecraft:dead_bush", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "min": 2, - "max": 7 - }, - "add": false - } - ] - }, - { - "type": "minecraft:item", - "weight": 15, - "name": "minecraft:cactus", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 7 - }, - "add": false - } - ] - }, - { - "type": "minecraft:item", - "weight": 8, - "name": "minecraft:acacia_sapling", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 8 - } - } - ] - }, - { - "type": "minecraft:item", - "weight": 8, - "name": "minecraft:sugar_cane", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 8 - } - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "weight": 15, - "name": "beautify:hanging_pot", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 1, - "max": 3 - } - } - ] - }, - { - "type": "minecraft:item", - "weight": 10, - "name": "minecraft:flower_pot", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 1, - "max": 3 - } - } - ] - }, - { - "type": "minecraft:item", - "weight": 7, - "name": "beautify:jungle_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 8 - } - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:bone_meal", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 5, - "max": 25 - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/chests/botanist/botanist_chest_savanna.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/chests/botanist/botanist_chest_savanna.json deleted file mode 100644 index 5d46254a..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/chests/botanist/botanist_chest_savanna.json +++ /dev/null @@ -1,160 +0,0 @@ -{ - "type": "minecraft:chest", - "pools": [ - { - "rolls": 1, - "bonus_rolls": 0, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:iron_hoe", - "functions": [ - { - "function": "minecraft:enchant_randomly" - } - ] - } - ] - }, - { - "rolls": { - "type": "minecraft:uniform", - "min": 1, - "max": 2 - }, - "bonus_rolls": 0, - "entries": [ - { - "type": "minecraft:item", - "weight": 15, - "name": "minecraft:poppy", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "min": 2, - "max": 7 - }, - "add": false - } - ] - }, - { - "type": "minecraft:item", - "weight": 15, - "name": "minecraft:dandelion", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 7 - }, - "add": false - } - ] - }, - { - "type": "minecraft:item", - "weight": 8, - "name": "minecraft:acacia_sapling", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 8 - } - } - ] - }, - { - "type": "minecraft:item", - "weight": 8, - "name": "minecraft:sugar_cane", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 8 - } - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "weight": 15, - "name": "beautify:hanging_pot", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 1, - "max": 3 - } - } - ] - }, - { - "type": "minecraft:item", - "weight": 10, - "name": "minecraft:flower_pot", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 1, - "max": 3 - } - } - ] - }, - { - "type": "minecraft:item", - "weight": 7, - "name": "beautify:acacia_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 8 - } - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:bone_meal", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 5, - "max": 25 - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/chests/botanist/botanist_chest_snowy.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/chests/botanist/botanist_chest_snowy.json deleted file mode 100644 index f261e81a..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/chests/botanist/botanist_chest_snowy.json +++ /dev/null @@ -1,145 +0,0 @@ -{ - "type": "minecraft:chest", - "pools": [ - { - "rolls": 1, - "bonus_rolls": 0, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:iron_hoe", - "functions": [ - { - "function": "minecraft:enchant_randomly" - } - ] - } - ] - }, - { - "rolls": { - "type": "minecraft:uniform", - "min": 1, - "max": 2 - }, - "bonus_rolls": 0, - "entries": [ - { - "type": "minecraft:item", - "weight": 15, - "name": "minecraft:lily_of_the_valley", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "min": 2, - "max": 7 - }, - "add": false - } - ] - }, - { - "type": "minecraft:item", - "weight": 15, - "name": "minecraft:poppy", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 7 - }, - "add": false - } - ] - }, - { - "type": "minecraft:item", - "weight": 8, - "name": "minecraft:spruce_sapling", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 8 - } - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "weight": 15, - "name": "beautify:hanging_pot", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 1, - "max": 3 - } - } - ] - }, - { - "type": "minecraft:item", - "weight": 10, - "name": "minecraft:flower_pot", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 1, - "max": 3 - } - } - ] - }, - { - "type": "minecraft:item", - "weight": 7, - "name": "beautify:spruce_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 8 - } - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:bone_meal", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 5, - "max": 25 - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/loot_tables/chests/botanist/botanist_chest_taiga.json b/mod/beautify/src/main/resources/data/beautify/loot_tables/chests/botanist/botanist_chest_taiga.json deleted file mode 100644 index 08ba70df..00000000 --- a/mod/beautify/src/main/resources/data/beautify/loot_tables/chests/botanist/botanist_chest_taiga.json +++ /dev/null @@ -1,145 +0,0 @@ -{ - "type": "minecraft:chest", - "pools": [ - { - "rolls": 1, - "bonus_rolls": 0, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:iron_hoe", - "functions": [ - { - "function": "minecraft:enchant_randomly" - } - ] - } - ] - }, - { - "rolls": { - "type": "minecraft:uniform", - "min": 1, - "max": 2 - }, - "bonus_rolls": 0, - "entries": [ - { - "type": "minecraft:item", - "weight": 15, - "name": "minecraft:sweet_berries", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "min": 2, - "max": 7 - }, - "add": false - } - ] - }, - { - "type": "minecraft:item", - "weight": 15, - "name": "minecraft:poppy", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 7 - }, - "add": false - } - ] - }, - { - "type": "minecraft:item", - "weight": 8, - "name": "minecraft:spruce_sapling", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 8 - } - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "weight": 15, - "name": "beautify:hanging_pot", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 1, - "max": 3 - } - } - ] - }, - { - "type": "minecraft:item", - "weight": 10, - "name": "minecraft:flower_pot", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 1, - "max": 3 - } - } - ] - }, - { - "type": "minecraft:item", - "weight": 7, - "name": "beautify:spruce_trellis", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 2, - "max": 8 - } - } - ] - } - ] - }, - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "minecraft:bone_meal", - "functions": [ - { - "function": "minecraft:set_count", - "count": { - "type": "minecraft:uniform", - "min": 5, - "max": 25 - } - } - ] - } - ] - } - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/acacia_blinds.json b/mod/beautify/src/main/resources/data/beautify/recipes/acacia_blinds.json deleted file mode 100644 index 95a6a494..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/acacia_blinds.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/_/", - "/_/" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "_": { - "item": "minecraft:acacia_slab" - } - }, - "result": { - "item": "beautify:acacia_blinds", - "count": 1 - }, - "group": "blinds" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/acacia_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/recipes/acacia_picture_frame.json deleted file mode 100644 index 46a934fc..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/acacia_picture_frame.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " _ ", - " W ", - " _/" - ], - "key": { - "_": { - "item": "minecraft:acacia_slab" - }, - "W": { - "item": "minecraft:white_wool" - }, - "/": { - "item": "minecraft:stick" - } - }, - "result": { - "item": "beautify:acacia_picture_frame", - "count": 1 - }, - "group": "frames" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/acacia_trellis.json b/mod/beautify/src/main/resources/data/beautify/recipes/acacia_trellis.json deleted file mode 100644 index e225bb23..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/acacia_trellis.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/ /", - " O ", - "/ /" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "O": { - "item": "minecraft:acacia_log" - } - }, - "result": { - "item": "beautify:acacia_trellis", - "count": 4 - }, - "group": "trellis" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/birch_blinds.json b/mod/beautify/src/main/resources/data/beautify/recipes/birch_blinds.json deleted file mode 100644 index 015a1ddd..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/birch_blinds.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/_/", - "/_/" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "_": { - "item": "minecraft:birch_slab" - } - }, - "result": { - "item": "beautify:birch_blinds", - "count": 1 - }, - "group": "blinds" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/birch_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/recipes/birch_picture_frame.json deleted file mode 100644 index b49b4da9..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/birch_picture_frame.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " _ ", - " W ", - " _/" - ], - "key": { - "_": { - "item": "minecraft:birch_slab" - }, - "W": { - "item": "minecraft:white_wool" - }, - "/": { - "item": "minecraft:stick" - } - }, - "result": { - "item": "beautify:birch_picture_frame", - "count": 1 - }, - "group": "frames" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/birch_trellis.json b/mod/beautify/src/main/resources/data/beautify/recipes/birch_trellis.json deleted file mode 100644 index 342afa76..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/birch_trellis.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/ /", - " O ", - "/ /" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "O": { - "item": "minecraft:birch_log" - } - }, - "result": { - "item": "beautify:birch_trellis", - "count": 4 - }, - "group": "trellis" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/bookstack.json b/mod/beautify/src/main/resources/data/beautify/recipes/bookstack.json deleted file mode 100644 index 18b6336f..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/bookstack.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:book" - }, - { - "item": "minecraft:book" - }, - { - "item": "minecraft:book" - } - ], - "result": { - "item": "beautify:bookstack", - "count": 1 - } -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/botanist_workbench.json b/mod/beautify/src/main/resources/data/beautify/recipes/botanist_workbench.json deleted file mode 100644 index 0e6a5dbb..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/botanist_workbench.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "##", - "PP" - ], - "key": { - "#": { - "item": "minecraft:flower_pot" - }, - "P": [ - { - "tag": "minecraft:planks" - } - ] - }, - "result": { - "item": "beautify:botanist_workbench", - "count": 1 - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra.json b/mod/beautify/src/main/resources/data/beautify/recipes/candleabra.json deleted file mode 100644 index fa6ef0e0..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra", - "count": 1 - }, - "group": "candleabras" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_black.json b/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_black.json deleted file mode 100644 index 8c0b5858..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_black.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:black_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_black", - "count": 1 - }, - "group": "candleabras" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_blue.json b/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_blue.json deleted file mode 100644 index 0bef8506..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_blue.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:blue_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_blue", - "count": 1 - }, - "group": "candleabras" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_brown.json b/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_brown.json deleted file mode 100644 index aa45f5f8..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_brown.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:brown_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_brown", - "count": 1 - }, - "group": "candleabras" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_cyan.json b/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_cyan.json deleted file mode 100644 index 0a80ef45..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_cyan.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:cyan_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_cyan", - "count": 1 - }, - "group": "candleabras" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_gray.json b/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_gray.json deleted file mode 100644 index 7f7d9886..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_gray.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:gray_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_gray", - "count": 1 - }, - "group": "candleabras" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_green.json b/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_green.json deleted file mode 100644 index 461929e6..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_green.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:green_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_green", - "count": 1 - }, - "group": "candleabras" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_light_blue.json b/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_light_blue.json deleted file mode 100644 index fcb74e14..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_light_blue.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:light_blue_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_light_blue", - "count": 1 - }, - "group": "candleabras" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_light_gray.json b/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_light_gray.json deleted file mode 100644 index 85bf1ee5..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_light_gray.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:light_gray_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_light_gray", - "count": 1 - }, - "group": "candleabras" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_lime.json b/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_lime.json deleted file mode 100644 index 791f9ac0..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_lime.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:lime_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_lime", - "count": 1 - }, - "group": "candleabras" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_magenta.json b/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_magenta.json deleted file mode 100644 index e9084fb8..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_magenta.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:magenta_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_magenta", - "count": 1 - }, - "group": "candleabras" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_orange.json b/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_orange.json deleted file mode 100644 index 6d21c453..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_orange.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:orange_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_orange", - "count": 1 - }, - "group": "candleabras" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_pink.json b/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_pink.json deleted file mode 100644 index 29555b25..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_pink.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:pink_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_pink", - "count": 1 - }, - "group": "candleabras" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_purple.json b/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_purple.json deleted file mode 100644 index 5ef4a65b..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_purple.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:purple_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_purple", - "count": 1 - }, - "group": "candleabras" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_red.json b/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_red.json deleted file mode 100644 index b242c3af..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_red.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:red_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_red", - "count": 1 - }, - "group": "candleabras" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_white.json b/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_white.json deleted file mode 100644 index 8c7b50f6..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_white.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:white_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_white", - "count": 1 - }, - "group": "candleabras" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_yellow.json b/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_yellow.json deleted file mode 100644 index 93a273db..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/candleabra_yellow.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:yellow_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_yellow", - "count": 1 - }, - "group": "candleabras" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/cherry_blinds.json b/mod/beautify/src/main/resources/data/beautify/recipes/cherry_blinds.json deleted file mode 100644 index 4ba97f80..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/cherry_blinds.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/_/", - "/_/" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "_": { - "item": "minecraft:cherry_slab" - } - }, - "result": { - "item": "beautify:cherry_blinds", - "count": 1 - }, - "group": "blinds" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/cherry_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/recipes/cherry_picture_frame.json deleted file mode 100644 index f439d0d2..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/cherry_picture_frame.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " _ ", - " W ", - " _/" - ], - "key": { - "_": { - "item": "minecraft:cherry_slab" - }, - "W": { - "item": "minecraft:white_wool" - }, - "/": { - "item": "minecraft:stick" - } - }, - "result": { - "item": "beautify:cherry_picture_frame", - "count": 1 - }, - "group": "frames" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/cherry_trellis.json b/mod/beautify/src/main/resources/data/beautify/recipes/cherry_trellis.json deleted file mode 100644 index 7a5b1b7e..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/cherry_trellis.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/ /", - " O ", - "/ /" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "O": { - "item": "minecraft:cherry_log" - } - }, - "result": { - "item": "beautify:cherry_trellis", - "count": 4 - }, - "group": "trellis" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/crimson_blinds.json b/mod/beautify/src/main/resources/data/beautify/recipes/crimson_blinds.json deleted file mode 100644 index f54db3bc..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/crimson_blinds.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/_/", - "/_/" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "_": { - "item": "minecraft:crimson_slab" - } - }, - "result": { - "item": "beautify:crimson_blinds", - "count": 1 - }, - "group": "blinds" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/crimson_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/recipes/crimson_picture_frame.json deleted file mode 100644 index 43abc8f7..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/crimson_picture_frame.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " _ ", - " W ", - " _/" - ], - "key": { - "_": { - "item": "minecraft:crimson_slab" - }, - "W": { - "item": "minecraft:white_wool" - }, - "/": { - "item": "minecraft:stick" - } - }, - "result": { - "item": "beautify:crimson_picture_frame", - "count": 1 - }, - "group": "frames" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/crimson_trellis.json b/mod/beautify/src/main/resources/data/beautify/recipes/crimson_trellis.json deleted file mode 100644 index 0d37239c..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/crimson_trellis.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/ /", - " O ", - "/ /" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "O": { - "item": "minecraft:crimson_stem" - } - }, - "result": { - "item": "beautify:crimson_trellis", - "count": 4 - }, - "group": "trellis" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/dark_oak_blinds.json b/mod/beautify/src/main/resources/data/beautify/recipes/dark_oak_blinds.json deleted file mode 100644 index 2b13b0c9..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/dark_oak_blinds.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/_/", - "/_/" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "_": { - "item": "minecraft:dark_oak_slab" - } - }, - "result": { - "item": "beautify:dark_oak_blinds", - "count": 1 - }, - "group": "blinds" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/dark_oak_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/recipes/dark_oak_picture_frame.json deleted file mode 100644 index f63f2239..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/dark_oak_picture_frame.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " _ ", - " W ", - " _/" - ], - "key": { - "_": { - "item": "minecraft:dark_oak_slab" - }, - "W": { - "item": "minecraft:white_wool" - }, - "/": { - "item": "minecraft:stick" - } - }, - "result": { - "item": "beautify:dark_oak_picture_frame", - "count": 1 - }, - "group": "frames" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/dark_oak_trellis.json b/mod/beautify/src/main/resources/data/beautify/recipes/dark_oak_trellis.json deleted file mode 100644 index 998eb9d1..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/dark_oak_trellis.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/ /", - " O ", - "/ /" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "O": { - "item": "minecraft:dark_oak_log" - } - }, - "result": { - "item": "beautify:dark_oak_trellis", - "count": 4 - }, - "group": "trellis" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/from_iron_blinds.json b/mod/beautify/src/main/resources/data/beautify/recipes/from_iron_blinds.json deleted file mode 100644 index 26cef2fc..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/from_iron_blinds.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "type": "minecraft:smelting", - "ingredient": { - "item": "beautify:iron_blinds" - }, - "result": "minecraft:iron_nugget", - "experience": 0.1, - "cookingtime": 250 -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/hanging_pot.json b/mod/beautify/src/main/resources/data/beautify/recipes/hanging_pot.json deleted file mode 100644 index aec19bf3..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/hanging_pot.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "#", - "F" - ], - "key": { - "#": { - "item": "beautify:rope" - }, - "F": { - "item": "minecraft:flower_pot" - } - }, - "result": { - "item": "beautify:hanging_pot", - "count": 1 - }, - "group": "hanging_pot" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/iron_blinds.json b/mod/beautify/src/main/resources/data/beautify/recipes/iron_blinds.json deleted file mode 100644 index 3467dd56..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/iron_blinds.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/_/", - "/_/" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "_": { - "item": "minecraft:iron_ingot" - } - }, - "result": { - "item": "beautify:iron_blinds", - "count": 2 - }, - "group": "blinds" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/jungle_blinds.json b/mod/beautify/src/main/resources/data/beautify/recipes/jungle_blinds.json deleted file mode 100644 index 758c421a..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/jungle_blinds.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/_/", - "/_/" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "_": { - "item": "minecraft:jungle_slab" - } - }, - "result": { - "item": "beautify:jungle_blinds", - "count": 1 - }, - "group": "blinds" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/jungle_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/recipes/jungle_picture_frame.json deleted file mode 100644 index a47c943f..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/jungle_picture_frame.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " _ ", - " W ", - " _/" - ], - "key": { - "_": { - "item": "minecraft:jungle_slab" - }, - "W": { - "item": "minecraft:white_wool" - }, - "/": { - "item": "minecraft:stick" - } - }, - "result": { - "item": "beautify:jungle_picture_frame", - "count": 1 - }, - "group": "frames" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/jungle_trellis.json b/mod/beautify/src/main/resources/data/beautify/recipes/jungle_trellis.json deleted file mode 100644 index 9b19864d..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/jungle_trellis.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/ /", - " O ", - "/ /" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "O": { - "item": "minecraft:jungle_log" - } - }, - "result": { - "item": "beautify:jungle_trellis", - "count": 4 - }, - "group": "trellis" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/lamp_bamboo.json b/mod/beautify/src/main/resources/data/beautify/recipes/lamp_bamboo.json deleted file mode 100644 index 66f01f71..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/lamp_bamboo.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " # ", - "ScS", - " # " - ], - "key": { - "#": { - "item": "minecraft:bamboo" - }, - "S": { - "item": "minecraft:string" - }, - "c": { - "item": "minecraft:copper_ingot" - } - }, - "result": { - "item": "beautify:lamp_bamboo", - "count": 1 - } -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/lamp_jar.json b/mod/beautify/src/main/resources/data/beautify/recipes/lamp_jar.json deleted file mode 100644 index f3afa6e1..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/lamp_jar.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shapeless", - "ingredients": [ - { - "item": "minecraft:glowstone_dust" - }, - { - "item": "minecraft:glass_bottle" - } - ], - "result": { - "item": "beautify:lamp_jar", - "count": 1 - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/lamp_light_bulb.json b/mod/beautify/src/main/resources/data/beautify/recipes/lamp_light_bulb.json deleted file mode 100644 index 88050f14..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/lamp_light_bulb.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " # ", - "#c#", - " # " - ], - "key": { - "#": { - "item": "minecraft:glass_pane" - }, - "c": { - "item": "minecraft:copper_ingot" - } - }, - "result": { - "item": "beautify:lamp_light_bulb", - "count": 1 - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/mangrove_blinds.json b/mod/beautify/src/main/resources/data/beautify/recipes/mangrove_blinds.json deleted file mode 100644 index 826d6fa5..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/mangrove_blinds.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/_/", - "/_/" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "_": { - "item": "minecraft:mangrove_slab" - } - }, - "result": { - "item": "beautify:mangrove_blinds", - "count": 1 - }, - "group": "blinds" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/mangrove_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/recipes/mangrove_picture_frame.json deleted file mode 100644 index 5cb968c0..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/mangrove_picture_frame.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " _ ", - " W ", - " _/" - ], - "key": { - "_": { - "item": "minecraft:mangrove_slab" - }, - "W": { - "item": "minecraft:white_wool" - }, - "/": { - "item": "minecraft:stick" - } - }, - "result": { - "item": "beautify:mangrove_picture_frame", - "count": 1 - }, - "group": "frames" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/mangrove_trellis.json b/mod/beautify/src/main/resources/data/beautify/recipes/mangrove_trellis.json deleted file mode 100644 index 0d4f054f..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/mangrove_trellis.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/ /", - " O ", - "/ /" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "O": { - "item": "minecraft:mangrove_log" - } - }, - "result": { - "item": "beautify:mangrove_trellis", - "count": 4 - }, - "group": "trellis" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/oak_blinds.json b/mod/beautify/src/main/resources/data/beautify/recipes/oak_blinds.json deleted file mode 100644 index 2c3af16c..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/oak_blinds.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/_/", - "/_/" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "_": { - "item": "minecraft:oak_slab" - } - }, - "result": { - "item": "beautify:oak_blinds", - "count": 1 - }, - "group": "blinds" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/oak_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/recipes/oak_picture_frame.json deleted file mode 100644 index 96ceaa1d..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/oak_picture_frame.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " _ ", - " W ", - " _/" - ], - "key": { - "_": { - "item": "minecraft:oak_slab" - }, - "W": { - "item": "minecraft:white_wool" - }, - "/": { - "item": "minecraft:stick" - } - }, - "result": { - "item": "beautify:oak_picture_frame", - "count": 1 - }, - "group": "frames" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/oak_trellis.json b/mod/beautify/src/main/resources/data/beautify/recipes/oak_trellis.json deleted file mode 100644 index 47444168..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/oak_trellis.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/ /", - " O ", - "/ /" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "O": { - "item": "minecraft:oak_log" - } - }, - "result": { - "item": "beautify:oak_trellis", - "count": 4 - }, - "group": "trellis" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/quartz_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/recipes/quartz_picture_frame.json deleted file mode 100644 index cbd3f604..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/quartz_picture_frame.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " _ ", - " W ", - " _/" - ], - "key": { - "_": { - "item": "minecraft:quartz_slab" - }, - "W": { - "item": "minecraft:white_wool" - }, - "/": { - "item": "minecraft:stick" - } - }, - "result": { - "item": "beautify:quartz_picture_frame", - "count": 1 - }, - "group": "frames" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/rope.json b/mod/beautify/src/main/resources/data/beautify/recipes/rope.json deleted file mode 100644 index 72cf7b36..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/rope.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "#", - "#", - "#" - ], - "key": { - "#": { - "item": "minecraft:string" - } - }, - "result": { - "item": "beautify:rope", - "count": 1 - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/spruce_blinds.json b/mod/beautify/src/main/resources/data/beautify/recipes/spruce_blinds.json deleted file mode 100644 index 6f5e16fd..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/spruce_blinds.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/_/", - "/_/" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "_": { - "item": "minecraft:spruce_slab" - } - }, - "result": { - "item": "beautify:spruce_blinds", - "count": 1 - }, - "group": "blinds" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/spruce_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/recipes/spruce_picture_frame.json deleted file mode 100644 index 55024805..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/spruce_picture_frame.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " _ ", - " W ", - " _/" - ], - "key": { - "_": { - "item": "minecraft:spruce_slab" - }, - "W": { - "item": "minecraft:white_wool" - }, - "/": { - "item": "minecraft:stick" - } - }, - "result": { - "item": "beautify:spruce_picture_frame", - "count": 1 - }, - "group": "frames" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/spruce_trellis.json b/mod/beautify/src/main/resources/data/beautify/recipes/spruce_trellis.json deleted file mode 100644 index dbd7b405..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/spruce_trellis.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/ /", - " O ", - "/ /" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "O": { - "item": "minecraft:spruce_log" - } - }, - "result": { - "item": "beautify:spruce_trellis", - "count": 4 - }, - "group": "trellis" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/warped_blinds.json b/mod/beautify/src/main/resources/data/beautify/recipes/warped_blinds.json deleted file mode 100644 index b1e7100c..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/warped_blinds.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/_/", - "/_/" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "_": { - "item": "minecraft:warped_slab" - } - }, - "result": { - "item": "beautify:warped_blinds", - "count": 1 - }, - "group": "blinds" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/warped_picture_frame.json b/mod/beautify/src/main/resources/data/beautify/recipes/warped_picture_frame.json deleted file mode 100644 index 5b8b033e..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/warped_picture_frame.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - " _ ", - " W ", - " _/" - ], - "key": { - "_": { - "item": "minecraft:warped_slab" - }, - "W": { - "item": "minecraft:white_wool" - }, - "/": { - "item": "minecraft:stick" - } - }, - "result": { - "item": "beautify:warped_picture_frame", - "count": 1 - }, - "group": "frames" -} diff --git a/mod/beautify/src/main/resources/data/beautify/recipes/warped_trellis.json b/mod/beautify/src/main/resources/data/beautify/recipes/warped_trellis.json deleted file mode 100644 index 9f7d44bb..00000000 --- a/mod/beautify/src/main/resources/data/beautify/recipes/warped_trellis.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "/ /", - " O ", - "/ /" - ], - "key": { - "/": { - "item": "minecraft:stick" - }, - "O": { - "item": "minecraft:warped_stem" - } - }, - "result": { - "item": "beautify:warped_trellis", - "count": 4 - }, - "group": "trellis" -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/structures/botanist_house_desert.nbt b/mod/beautify/src/main/resources/data/beautify/structures/botanist_house_desert.nbt deleted file mode 100644 index 3b66250d..00000000 Binary files a/mod/beautify/src/main/resources/data/beautify/structures/botanist_house_desert.nbt and /dev/null differ diff --git a/mod/beautify/src/main/resources/data/beautify/structures/botanist_house_plains.nbt b/mod/beautify/src/main/resources/data/beautify/structures/botanist_house_plains.nbt deleted file mode 100644 index d50fb857..00000000 Binary files a/mod/beautify/src/main/resources/data/beautify/structures/botanist_house_plains.nbt and /dev/null differ diff --git a/mod/beautify/src/main/resources/data/beautify/structures/botanist_house_savanna.nbt b/mod/beautify/src/main/resources/data/beautify/structures/botanist_house_savanna.nbt deleted file mode 100644 index 58a6feb3..00000000 Binary files a/mod/beautify/src/main/resources/data/beautify/structures/botanist_house_savanna.nbt and /dev/null differ diff --git a/mod/beautify/src/main/resources/data/beautify/structures/botanist_house_snowy.nbt b/mod/beautify/src/main/resources/data/beautify/structures/botanist_house_snowy.nbt deleted file mode 100644 index bbe41498..00000000 Binary files a/mod/beautify/src/main/resources/data/beautify/structures/botanist_house_snowy.nbt and /dev/null differ diff --git a/mod/beautify/src/main/resources/data/beautify/structures/botanist_house_taiga.nbt b/mod/beautify/src/main/resources/data/beautify/structures/botanist_house_taiga.nbt deleted file mode 100644 index 2d1595fb..00000000 Binary files a/mod/beautify/src/main/resources/data/beautify/structures/botanist_house_taiga.nbt and /dev/null differ diff --git a/mod/beautify/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_desert_biomes.json b/mod/beautify/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_desert_biomes.json deleted file mode 100644 index 2262d9ba..00000000 --- a/mod/beautify/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_desert_biomes.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "_comment": " This biome tag can specify the biome directly. Or specify another biome tag by starting with # ", - "values": [ - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_plains_biomes.json b/mod/beautify/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_plains_biomes.json deleted file mode 100644 index 2262d9ba..00000000 --- a/mod/beautify/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_plains_biomes.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "_comment": " This biome tag can specify the biome directly. Or specify another biome tag by starting with # ", - "values": [ - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_savanna_biomes.json b/mod/beautify/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_savanna_biomes.json deleted file mode 100644 index 2262d9ba..00000000 --- a/mod/beautify/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_savanna_biomes.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "_comment": " This biome tag can specify the biome directly. Or specify another biome tag by starting with # ", - "values": [ - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_snowy_biomes.json b/mod/beautify/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_snowy_biomes.json deleted file mode 100644 index 2262d9ba..00000000 --- a/mod/beautify/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_snowy_biomes.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "_comment": " This biome tag can specify the biome directly. Or specify another biome tag by starting with # ", - "values": [ - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_taiga_biomes.json b/mod/beautify/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_taiga_biomes.json deleted file mode 100644 index 2262d9ba..00000000 --- a/mod/beautify/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_taiga_biomes.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "_comment": " This biome tag can specify the biome directly. Or specify another biome tag by starting with # ", - "values": [ - ] -} diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/processor_list/randomize_cobblestone.json b/mod/beautify/src/main/resources/data/beautify/worldgen/processor_list/randomize_cobblestone.json deleted file mode 100644 index 2cb0cab5..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/processor_list/randomize_cobblestone.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - // Processor lists will run a processor for every block placed by the nbt file. - // The resultant block of the processor list is the block that actually gets placed in the world. - "processors": [ - // A single Rule processor for this list. - { - "processor_type": "minecraft:rule", - - // The rules for this Rule processor to use - "rules": [ - { - // The block to look for from the nbt file - // This has a 50% chance of allowing the found stone bricks block to be replaced - "input_predicate": { - "block": "minecraft:cobblestone", - "probability": 0.4, - "predicate_type": "minecraft:random_block_match" - }, - // This is always true - // Village roads have this part look for water so roads can be replaced with oak planks instead - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - // The actual block to place if the above conditions return true - "output_state": { - "Name": "minecraft:mossy_cobblestone" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/processor_list/randomize_orange_terracotta.json b/mod/beautify/src/main/resources/data/beautify/worldgen/processor_list/randomize_orange_terracotta.json deleted file mode 100644 index 9310dd55..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/processor_list/randomize_orange_terracotta.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - // Processor lists will run a processor for every block placed by the nbt file. - // The resultant block of the processor list is the block that actually gets placed in the world. - "processors": [ - // A single Rule processor for this list. - { - "processor_type": "minecraft:rule", - - // The rules for this Rule processor to use - "rules": [ - { - // The block to look for from the nbt file - // This has a 50% chance of allowing the found stone bricks block to be replaced - "input_predicate": { - "block": "minecraft:orange_terracotta", - "probability": 0.2, - "predicate_type": "minecraft:random_block_match" - }, - // This is always true - // Village roads have this part look for water so roads can be replaced with oak planks instead - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - // The actual block to place if the above conditions return true - "output_state": { - "Name": "minecraft:acacia_planks" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/processor_list/randomize_sandstone.json b/mod/beautify/src/main/resources/data/beautify/worldgen/processor_list/randomize_sandstone.json deleted file mode 100644 index 482579bd..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/processor_list/randomize_sandstone.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - // Processor lists will run a processor for every block placed by the nbt file. - // The resultant block of the processor list is the block that actually gets placed in the world. - "processors": [ - // A single Rule processor for this list. - { - "processor_type": "minecraft:rule", - - // The rules for this Rule processor to use - "rules": [ - { - // The block to look for from the nbt file - // This has a 50% chance of allowing the found stone bricks block to be replaced - "input_predicate": { - "block": "minecraft:smooth_sandstone", - "probability": 0.2, - "predicate_type": "minecraft:random_block_match" - }, - // This is always true - // Village roads have this part look for water so roads can be replaced with oak planks instead - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - // The actual block to place if the above conditions return true - "output_state": { - "Name": "minecraft:sandstone" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/processor_list/randomize_spruce.json b/mod/beautify/src/main/resources/data/beautify/worldgen/processor_list/randomize_spruce.json deleted file mode 100644 index fad3f8db..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/processor_list/randomize_spruce.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - // Processor lists will run a processor for every block placed by the nbt file. - // The resultant block of the processor list is the block that actually gets placed in the world. - "processors": [ - // A single Rule processor for this list. - { - "processor_type": "minecraft:rule", - - // The rules for this Rule processor to use - "rules": [ - { - // The block to look for from the nbt file - // This has a 50% chance of allowing the found stone bricks block to be replaced - "input_predicate": { - "block": "minecraft:spruce_planks", - "probability": 0.2, - "predicate_type": "minecraft:random_block_match" - }, - // This is always true - // Village roads have this part look for water so roads can be replaced with oak planks instead - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - // The actual block to place if the above conditions return true - "output_state": { - "Name": "minecraft:stripped_spruce_wood" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/structure/botanist_house_desert.json b/mod/beautify/src/main/resources/data/beautify/worldgen/structure/botanist_house_desert.json deleted file mode 100644 index 6ccafb30..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/structure/botanist_house_desert.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - // The base structure class to use for the behavior of the structure. In this case, minecraft:jigsaw is good for most structures. - "type": "minecraft:jigsaw", - - // the path to the template pool json file to use - "start_pool": "beautify:botanist_house_desert/start_pool", - - // This is how many pieces away from the starting piece a piece of the structure can spawn - // Think of it like the length of the branch of the structure - "size": 1, - - // Maximum distance away from center that pieces can spawn. Cannot be greater than 128 - "max_distance_from_center": 80, - - // The biome tag to use for what biomes that this structure can spawn in" - "biomes": "#beautify:has_structure/botanist_house_desert_biomes", - - // The generation step for when to generate the structure. there are 10 stages you can pick from! - // This surface structure stage places the structure before plants and ores are generated - // See GenerationStep.Feature enum for all the stages you can use and what order they are in - "step": "surface_structures", - - // This will add land around the bottom of the structure. (Based on the starting piece's y value) - // The kinds of values allowed here are: none, beard_thin, beard_box, and bury - // If no land change is deseried, removed this field entirely. - "terrain_adaptation": "beard_thin", - - // Where to spawn our structure at what y value if project_start_to_heightmap is not present. - // start_height can be used to spawn at a random fixed y value by doing something like: "max_inclusive": { "below_top": 10 }, "min_inclusive": { "above_bottom": 32 } - // If project_start_to_heightmap is present, the y value chosen in start_height will be added to the terrain's y value. - // So a start height that gives -5 will sink the structure 5 blocks into the terrain. - "start_height": { - "absolute": 1 - }, - - // Makes our house snap to top land to spawn at. WORLD_SURFACE_WG will stop at first non-air block. - // To get top land at even the bottom of oceans, use OCEAN_FLOOR_WG. - // If no projection desired, remove this field entirely. - "project_start_to_heightmap": "WORLD_SURFACE_WG", - - // Keep this false. This is only for vanilla legacy villages to make it spawn properly. We don't need no hacks here! - "use_expansion_hack": false, - // What mobs can spawn over time in the structure. - // Make sure you add the mob to the right category (monster, creature, etc) - "spawn_overrides": { - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/structure/botanist_house_plains.json b/mod/beautify/src/main/resources/data/beautify/worldgen/structure/botanist_house_plains.json deleted file mode 100644 index 4b75b482..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/structure/botanist_house_plains.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - // The base structure class to use for the behavior of the structure. In this case, minecraft:jigsaw is good for most structures. - "type": "minecraft:jigsaw", - - // the path to the template pool json file to use - "start_pool": "beautify:botanist_house_plains/start_pool", - - // This is how many pieces away from the starting piece a piece of the structure can spawn - // Think of it like the length of the branch of the structure - "size": 1, - - // Maximum distance away from center that pieces can spawn. Cannot be greater than 128 - "max_distance_from_center": 80, - - // The biome tag to use for what biomes that this structure can spawn in" - "biomes": "#beautify:has_structure/botanist_house_plains_biomes", - - // The generation step for when to generate the structure. there are 10 stages you can pick from! - // This surface structure stage places the structure before plants and ores are generated - // See GenerationStep.Feature enum for all the stages you can use and what order they are in - "step": "surface_structures", - - // This will add land around the bottom of the structure. (Based on the starting piece's y value) - // The kinds of values allowed here are: none, beard_thin, beard_box, and bury - // If no land change is deseried, removed this field entirely. - "terrain_adaptation": "beard_thin", - - // Where to spawn our structure at what y value if project_start_to_heightmap is not present. - // start_height can be used to spawn at a random fixed y value by doing something like: "max_inclusive": { "below_top": 10 }, "min_inclusive": { "above_bottom": 32 } - // If project_start_to_heightmap is present, the y value chosen in start_height will be added to the terrain's y value. - // So a start height that gives -5 will sink the structure 5 blocks into the terrain. - "start_height": { - "absolute": 1 - }, - - // Makes our house snap to top land to spawn at. WORLD_SURFACE_WG will stop at first non-air block. - // To get top land at even the bottom of oceans, use OCEAN_FLOOR_WG. - // If no projection desired, remove this field entirely. - "project_start_to_heightmap": "WORLD_SURFACE_WG", - - // Keep this false. This is only for vanilla legacy villages to make it spawn properly. We don't need no hacks here! - "use_expansion_hack": false, - // What mobs can spawn over time in the structure. - // Make sure you add the mob to the right category (monster, creature, etc) - "spawn_overrides": { - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/structure/botanist_house_savanna.json b/mod/beautify/src/main/resources/data/beautify/worldgen/structure/botanist_house_savanna.json deleted file mode 100644 index 4d1ca282..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/structure/botanist_house_savanna.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - // The base structure class to use for the behavior of the structure. In this case, minecraft:jigsaw is good for most structures. - "type": "minecraft:jigsaw", - - // the path to the template pool json file to use - "start_pool": "beautify:botanist_house_savanna/start_pool", - - // This is how many pieces away from the starting piece a piece of the structure can spawn - // Think of it like the length of the branch of the structure - "size": 1, - - // Maximum distance away from center that pieces can spawn. Cannot be greater than 128 - "max_distance_from_center": 80, - - // The biome tag to use for what biomes that this structure can spawn in" - "biomes": "#beautify:has_structure/botanist_house_savanna_biomes", - - // The generation step for when to generate the structure. there are 10 stages you can pick from! - // This surface structure stage places the structure before plants and ores are generated - // See GenerationStep.Feature enum for all the stages you can use and what order they are in - "step": "surface_structures", - - // This will add land around the bottom of the structure. (Based on the starting piece's y value) - // The kinds of values allowed here are: none, beard_thin, beard_box, and bury - // If no land change is deseried, removed this field entirely. - "terrain_adaptation": "beard_thin", - - // Where to spawn our structure at what y value if project_start_to_heightmap is not present. - // start_height can be used to spawn at a random fixed y value by doing something like: "max_inclusive": { "below_top": 10 }, "min_inclusive": { "above_bottom": 32 } - // If project_start_to_heightmap is present, the y value chosen in start_height will be added to the terrain's y value. - // So a start height that gives -5 will sink the structure 5 blocks into the terrain. - "start_height": { - "absolute": 1 - }, - - // Makes our house snap to top land to spawn at. WORLD_SURFACE_WG will stop at first non-air block. - // To get top land at even the bottom of oceans, use OCEAN_FLOOR_WG. - // If no projection desired, remove this field entirely. - "project_start_to_heightmap": "WORLD_SURFACE_WG", - - // Keep this false. This is only for vanilla legacy villages to make it spawn properly. We don't need no hacks here! - "use_expansion_hack": false, - // What mobs can spawn over time in the structure. - // Make sure you add the mob to the right category (monster, creature, etc) - "spawn_overrides": { - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/structure/botanist_house_snowy.json b/mod/beautify/src/main/resources/data/beautify/worldgen/structure/botanist_house_snowy.json deleted file mode 100644 index 3ac4d21c..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/structure/botanist_house_snowy.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - // The base structure class to use for the behavior of the structure. In this case, minecraft:jigsaw is good for most structures. - "type": "minecraft:jigsaw", - - // the path to the template pool json file to use - "start_pool": "beautify:botanist_house_snowy/start_pool", - - // This is how many pieces away from the starting piece a piece of the structure can spawn - // Think of it like the length of the branch of the structure - "size": 1, - - // Maximum distance away from center that pieces can spawn. Cannot be greater than 128 - "max_distance_from_center": 80, - - // The biome tag to use for what biomes that this structure can spawn in" - "biomes": "#beautify:has_structure/botanist_house_snowy_biomes", - - // The generation step for when to generate the structure. there are 10 stages you can pick from! - // This surface structure stage places the structure before plants and ores are generated - // See GenerationStep.Feature enum for all the stages you can use and what order they are in - "step": "surface_structures", - - // This will add land around the bottom of the structure. (Based on the starting piece's y value) - // The kinds of values allowed here are: none, beard_thin, beard_box, and bury - // If no land change is deseried, removed this field entirely. - "terrain_adaptation": "beard_thin", - - // Where to spawn our structure at what y value if project_start_to_heightmap is not present. - // start_height can be used to spawn at a random fixed y value by doing something like: "max_inclusive": { "below_top": 10 }, "min_inclusive": { "above_bottom": 32 } - // If project_start_to_heightmap is present, the y value chosen in start_height will be added to the terrain's y value. - // So a start height that gives -5 will sink the structure 5 blocks into the terrain. - "start_height": { - "absolute": 1 - }, - - // Makes our house snap to top land to spawn at. WORLD_SURFACE_WG will stop at first non-air block. - // To get top land at even the bottom of oceans, use OCEAN_FLOOR_WG. - // If no projection desired, remove this field entirely. - "project_start_to_heightmap": "WORLD_SURFACE_WG", - - // Keep this false. This is only for vanilla legacy villages to make it spawn properly. We don't need no hacks here! - "use_expansion_hack": false, - // What mobs can spawn over time in the structure. - // Make sure you add the mob to the right category (monster, creature, etc) - "spawn_overrides": { - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/structure/botanist_house_taiga.json b/mod/beautify/src/main/resources/data/beautify/worldgen/structure/botanist_house_taiga.json deleted file mode 100644 index cafbffd8..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/structure/botanist_house_taiga.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - // The base structure class to use for the behavior of the structure. In this case, minecraft:jigsaw is good for most structures. - "type": "minecraft:jigsaw", - - // the path to the template pool json file to use - "start_pool": "beautify:botanist_house_taiga/start_pool", - - // This is how many pieces away from the starting piece a piece of the structure can spawn - // Think of it like the length of the branch of the structure - "size": 1, - - // Maximum distance away from center that pieces can spawn. Cannot be greater than 128 - "max_distance_from_center": 80, - - // The biome tag to use for what biomes that this structure can spawn in" - "biomes": "#beautify:has_structure/botanist_house_taiga_biomes", - - // The generation step for when to generate the structure. there are 10 stages you can pick from! - // This surface structure stage places the structure before plants and ores are generated - // See GenerationStep.Feature enum for all the stages you can use and what order they are in - "step": "surface_structures", - - // This will add land around the bottom of the structure. (Based on the starting piece's y value) - // The kinds of values allowed here are: none, beard_thin, beard_box, and bury - // If no land change is deseried, removed this field entirely. - "terrain_adaptation": "beard_thin", - - // Where to spawn our structure at what y value if project_start_to_heightmap is not present. - // start_height can be used to spawn at a random fixed y value by doing something like: "max_inclusive": { "below_top": 10 }, "min_inclusive": { "above_bottom": 32 } - // If project_start_to_heightmap is present, the y value chosen in start_height will be added to the terrain's y value. - // So a start height that gives -5 will sink the structure 5 blocks into the terrain. - "start_height": { - "absolute": 1 - }, - - // Makes our house snap to top land to spawn at. WORLD_SURFACE_WG will stop at first non-air block. - // To get top land at even the bottom of oceans, use OCEAN_FLOOR_WG. - // If no projection desired, remove this field entirely. - "project_start_to_heightmap": "WORLD_SURFACE_WG", - - // Keep this false. This is only for vanilla legacy villages to make it spawn properly. We don't need no hacks here! - "use_expansion_hack": false, - // What mobs can spawn over time in the structure. - // Make sure you add the mob to the right category (monster, creature, etc) - "spawn_overrides": { - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_desert.json b/mod/beautify/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_desert.json deleted file mode 100644 index 6e57803f..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_desert.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // What structures to pick to try and spawn if a spot passes the placement check. - // If two or more structures in this list can spawn in a biome at a spot, a random one based on weight is chosen to spawn - "structures": [ - { - "structure": "beautify:botanist_house_desert", - "weight": 1 - } - ], - "placement": { - // The kind of placement to use. The other kind is ring based like strongholds use. - "type": "minecraft:random_spread", - - // Make sure this is unique and does not match any other structure set's salt - "salt": 1994267089, - - // The average distance apart in chunks for spawn attempts - "spacing": 20, - - // Minimum distance apart in chunks for spawn attempts - // MUST ALWAYS BE SMALLER THAN spacing ABOVE - "separation": 6 - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_plains.json b/mod/beautify/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_plains.json deleted file mode 100644 index cbc0f173..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_plains.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // What structures to pick to try and spawn if a spot passes the placement check. - // If two or more structures in this list can spawn in a biome at a spot, a random one based on weight is chosen to spawn - "structures": [ - { - "structure": "beautify:botanist_house_plains", - "weight": 1 - } - ], - "placement": { - // The kind of placement to use. The other kind is ring based like strongholds use. - "type": "minecraft:random_spread", - - // Make sure this is unique and does not match any other structure set's salt - "salt": 1994267089, - - // The average distance apart in chunks for spawn attempts - "spacing": 20, - - // Minimum distance apart in chunks for spawn attempts - // MUST ALWAYS BE SMALLER THAN spacing ABOVE - "separation": 6 - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_savanna.json b/mod/beautify/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_savanna.json deleted file mode 100644 index ab0c06b3..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_savanna.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // What structures to pick to try and spawn if a spot passes the placement check. - // If two or more structures in this list can spawn in a biome at a spot, a random one based on weight is chosen to spawn - "structures": [ - { - "structure": "beautify:botanist_house_savanna", - "weight": 1 - } - ], - "placement": { - // The kind of placement to use. The other kind is ring based like strongholds use. - "type": "minecraft:random_spread", - - // Make sure this is unique and does not match any other structure set's salt - "salt": 1994267089, - - // The average distance apart in chunks for spawn attempts - "spacing": 20, - - // Minimum distance apart in chunks for spawn attempts - // MUST ALWAYS BE SMALLER THAN spacing ABOVE - "separation": 6 - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_snowy.json b/mod/beautify/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_snowy.json deleted file mode 100644 index 2d4a570f..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_snowy.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // What structures to pick to try and spawn if a spot passes the placement check. - // If two or more structures in this list can spawn in a biome at a spot, a random one based on weight is chosen to spawn - "structures": [ - { - "structure": "beautify:botanist_house_snowy", - "weight": 1 - } - ], - "placement": { - // The kind of placement to use. The other kind is ring based like strongholds use. - "type": "minecraft:random_spread", - - // Make sure this is unique and does not match any other structure set's salt - "salt": 1994267089, - - // The average distance apart in chunks for spawn attempts - "spacing": 20, - - // Minimum distance apart in chunks for spawn attempts - // MUST ALWAYS BE SMALLER THAN spacing ABOVE - "separation": 6 - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_taiga.json b/mod/beautify/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_taiga.json deleted file mode 100644 index f14f67ec..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_taiga.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // What structures to pick to try and spawn if a spot passes the placement check. - // If two or more structures in this list can spawn in a biome at a spot, a random one based on weight is chosen to spawn - "structures": [ - { - "structure": "beautify:botanist_house_taiga", - "weight": 1 - } - ], - "placement": { - // The kind of placement to use. The other kind is ring based like strongholds use. - "type": "minecraft:random_spread", - - // Make sure this is unique and does not match any other structure set's salt - "salt": 1994267089, - - // The average distance apart in chunks for spawn attempts - "spacing": 20, - - // Minimum distance apart in chunks for spawn attempts - // MUST ALWAYS BE SMALLER THAN spacing ABOVE - "separation": 6 - } -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_desert/start_pool.json b/mod/beautify/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_desert/start_pool.json deleted file mode 100644 index a7be59cc..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_desert/start_pool.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - // More info on template pools can be found here: https://minecraft.gamepedia.com/Custom_world_generation#JSON_format_8 - // Yes, worldgen json files can have comments. Minecraft does "lenient" parsing of these json files. - - // This is the name of the template pool itself. I tend to just put the file path and file name here with modid. - "name": "beautify:botanist_house_desert/start_pool", - - // The template pool to refer to if the entries in 'elements' fails to generate. - "fallback": "minecraft:empty", - - // Here you can list as many nbt files or placed features to spawn. - // Do note that placed features needs a special element entry stuff. - "elements": [ - { - - // How likely out of all the element for this one to be chosen. - "weight": 1, - "element": { - - // The Identifier of the nbt file itself of the structure piece. - // Note, this will automatically check into the 'structures' folder for the nbt file. - // The final path would look like 'resources/data/beautify/structures/run_down_house_left_side.nbt' - // The Jigsaw block in the structure will point to side_pool.json to spawn the other half of the house. - "location": "beautify:botanist_house_desert", - - // Processor JSON files can be used to randomize or replace blocks dynamically. Here, we don't do any of that. - "processors": "beautify:randomize_sandstone", - - // If set to 'terrain_matching', the house would be deformed to fit the change in land. - // That's best for roads so lets stay 'rigid' for now. - "projection": "rigid", - - // The kind of element we are spawning. This one is most likely what you want. - // There's 'minecraft:legacy_single_pool_element' but that swaps the behavior of - // Air and Structure Void in your piece as well as change the attachment mechanism. - // It's only for old Vanilla Jigsaw Structures so don't use it. Stick with non-legacy. - "element_type": "minecraft:single_pool_element" - } - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_plains/start_pool.json b/mod/beautify/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_plains/start_pool.json deleted file mode 100644 index c8168c64..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_plains/start_pool.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - // More info on template pools can be found here: https://minecraft.gamepedia.com/Custom_world_generation#JSON_format_8 - // Yes, worldgen json files can have comments. Minecraft does "lenient" parsing of these json files. - - // This is the name of the template pool itself. I tend to just put the file path and file name here with modid. - "name": "beautify:botanist_house_plains/start_pool", - - // The template pool to refer to if the entries in 'elements' fails to generate. - "fallback": "minecraft:empty", - - // Here you can list as many nbt files or placed features to spawn. - // Do note that placed features needs a special element entry stuff. - "elements": [ - { - - // How likely out of all the element for this one to be chosen. - "weight": 1, - "element": { - - // The Identifier of the nbt file itself of the structure piece. - // Note, this will automatically check into the 'structures' folder for the nbt file. - // The final path would look like 'resources/data/beautify/structures/run_down_house_left_side.nbt' - // The Jigsaw block in the structure will point to side_pool.json to spawn the other half of the house. - "location": "beautify:botanist_house_plains", - - // Processor JSON files can be used to randomize or replace blocks dynamically. Here, we don't do any of that. - "processors": "beautify:randomize_cobblestone", - - // If set to 'terrain_matching', the house would be deformed to fit the change in land. - // That's best for roads so lets stay 'rigid' for now. - "projection": "rigid", - - // The kind of element we are spawning. This one is most likely what you want. - // There's 'minecraft:legacy_single_pool_element' but that swaps the behavior of - // Air and Structure Void in your piece as well as change the attachment mechanism. - // It's only for old Vanilla Jigsaw Structures so don't use it. Stick with non-legacy. - "element_type": "minecraft:single_pool_element" - } - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_savanna/start_pool.json b/mod/beautify/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_savanna/start_pool.json deleted file mode 100644 index c928ccdc..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_savanna/start_pool.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - // More info on template pools can be found here: https://minecraft.gamepedia.com/Custom_world_generation#JSON_format_8 - // Yes, worldgen json files can have comments. Minecraft does "lenient" parsing of these json files. - - // This is the name of the template pool itself. I tend to just put the file path and file name here with modid. - "name": "beautify:botanist_house_savanna/start_pool", - - // The template pool to refer to if the entries in 'elements' fails to generate. - "fallback": "minecraft:empty", - - // Here you can list as many nbt files or placed features to spawn. - // Do note that placed features needs a special element entry stuff. - "elements": [ - { - - // How likely out of all the element for this one to be chosen. - "weight": 1, - "element": { - - // The Identifier of the nbt file itself of the structure piece. - // Note, this will automatically check into the 'structures' folder for the nbt file. - // The final path would look like 'resources/data/beautify/structures/run_down_house_left_side.nbt' - // The Jigsaw block in the structure will point to side_pool.json to spawn the other half of the house. - "location": "beautify:botanist_house_savanna", - - // Processor JSON files can be used to randomize or replace blocks dynamically. Here, we don't do any of that. - "processors": "beautify:randomize_orange_terracotta", - - // If set to 'terrain_matching', the house would be deformed to fit the change in land. - // That's best for roads so lets stay 'rigid' for now. - "projection": "rigid", - - // The kind of element we are spawning. This one is most likely what you want. - // There's 'minecraft:legacy_single_pool_element' but that swaps the behavior of - // Air and Structure Void in your piece as well as change the attachment mechanism. - // It's only for old Vanilla Jigsaw Structures so don't use it. Stick with non-legacy. - "element_type": "minecraft:single_pool_element" - } - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_snowy/start_pool.json b/mod/beautify/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_snowy/start_pool.json deleted file mode 100644 index 639e201f..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_snowy/start_pool.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - // More info on template pools can be found here: https://minecraft.gamepedia.com/Custom_world_generation#JSON_format_8 - // Yes, worldgen json files can have comments. Minecraft does "lenient" parsing of these json files. - - // This is the name of the template pool itself. I tend to just put the file path and file name here with modid. - "name": "beautify:botanist_house_snowy/start_pool", - - // The template pool to refer to if the entries in 'elements' fails to generate. - "fallback": "minecraft:empty", - - // Here you can list as many nbt files or placed features to spawn. - // Do note that placed features needs a special element entry stuff. - "elements": [ - { - - // How likely out of all the element for this one to be chosen. - "weight": 1, - "element": { - - // The Identifier of the nbt file itself of the structure piece. - // Note, this will automatically check into the 'structures' folder for the nbt file. - // The final path would look like 'resources/data/beautify/structures/run_down_house_left_side.nbt' - // The Jigsaw block in the structure will point to side_pool.json to spawn the other half of the house. - "location": "beautify:botanist_house_snowy", - - // Processor JSON files can be used to randomize or replace blocks dynamically. Here, we don't do any of that. - "processors": "beautify:randomize_spruce", - - // If set to 'terrain_matching', the house would be deformed to fit the change in land. - // That's best for roads so lets stay 'rigid' for now. - "projection": "rigid", - - // The kind of element we are spawning. This one is most likely what you want. - // There's 'minecraft:legacy_single_pool_element' but that swaps the behavior of - // Air and Structure Void in your piece as well as change the attachment mechanism. - // It's only for old Vanilla Jigsaw Structures so don't use it. Stick with non-legacy. - "element_type": "minecraft:single_pool_element" - } - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_taiga/start_pool.json b/mod/beautify/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_taiga/start_pool.json deleted file mode 100644 index 84440b79..00000000 --- a/mod/beautify/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_taiga/start_pool.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - // More info on template pools can be found here: https://minecraft.gamepedia.com/Custom_world_generation#JSON_format_8 - // Yes, worldgen json files can have comments. Minecraft does "lenient" parsing of these json files. - - // This is the name of the template pool itself. I tend to just put the file path and file name here with modid. - "name": "beautify:botanist_house_taiga/start_pool", - - // The template pool to refer to if the entries in 'elements' fails to generate. - "fallback": "minecraft:empty", - - // Here you can list as many nbt files or placed features to spawn. - // Do note that placed features needs a special element entry stuff. - "elements": [ - { - - // How likely out of all the element for this one to be chosen. - "weight": 1, - "element": { - - // The Identifier of the nbt file itself of the structure piece. - // Note, this will automatically check into the 'structures' folder for the nbt file. - // The final path would look like 'resources/data/beautify/structures/run_down_house_left_side.nbt' - // The Jigsaw block in the structure will point to side_pool.json to spawn the other half of the house. - "location": "beautify:botanist_house_taiga", - - // Processor JSON files can be used to randomize or replace blocks dynamically. Here, we don't do any of that. - "processors": "beautify:randomize_cobblestone", - - // If set to 'terrain_matching', the house would be deformed to fit the change in land. - // That's best for roads so lets stay 'rigid' for now. - "projection": "rigid", - - // The kind of element we are spawning. This one is most likely what you want. - // There's 'minecraft:legacy_single_pool_element' but that swaps the behavior of - // Air and Structure Void in your piece as well as change the attachment mechanism. - // It's only for old Vanilla Jigsaw Structures so don't use it. Stick with non-legacy. - "element_type": "minecraft:single_pool_element" - } - } - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/minecraft/tags/blocks/climbable.json b/mod/beautify/src/main/resources/data/minecraft/tags/blocks/climbable.json deleted file mode 100644 index 2763627d..00000000 --- a/mod/beautify/src/main/resources/data/minecraft/tags/blocks/climbable.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "replace": false, - "values": [ - "beautify:rope", - "beautify:oak_trellis", - "beautify:spruce_trellis", - "beautify:birch_trellis", - "beautify:jungle_trellis", - "beautify:acacia_trellis", - "beautify:dark_oak_trellis", - "beautify:mangrove_trellis", - "beautify:crimson_trellis", - "beautify:cherry_trellis", - "beautify:warped_trellis" - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/minecraft/tags/blocks/mineable/axe.json b/mod/beautify/src/main/resources/data/minecraft/tags/blocks/mineable/axe.json deleted file mode 100644 index 00cd7c5b..00000000 --- a/mod/beautify/src/main/resources/data/minecraft/tags/blocks/mineable/axe.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "replace": false, - "values": [ - "beautify:oak_blinds", - "beautify:birch_blinds", - "beautify:spruce_blinds", - "beautify:dark_oak_blinds", - "beautify:warped_blinds", - "beautify:crimson_blinds", - "beautify:cherry_blinds", - "beautify:acacia_blinds", - "beautify:jungle_blinds", - "beautify:oak_trellis", - "beautify:spruce_trellis", - "beautify:birch_trellis", - "beautify:jungle_trellis", - "beautify:acacia_trellis", - "beautify:dark_oak_trellis", - "beautify:mangrove_trellis", - "beautify:crimson_trellis", - "beautify:cherry_trellis", - "beautify:warped_trellis" - ] -} diff --git a/mod/beautify/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json b/mod/beautify/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json deleted file mode 100644 index 3676aab4..00000000 --- a/mod/beautify/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "replace": false, - "values":[ - "beautify:iron_blinds", - "beautify:lamp_candleabra", - "beautify:lamp_candleabra_light_blue", - "beautify:lamp_candleabra_light_gray", - "beautify:lamp_candleabra_black", - "beautify:lamp_candleabra_blue", - "beautify:lamp_candleabra_brown", - "beautify:lamp_candleabra_cyan", - "beautify:lamp_candleabra_gray", - "beautify:lamp_candleabra_green", - "beautify:lamp_candleabra_lime", - "beautify:lamp_candleabra_magenta", - "beautify:lamp_candleabra_orange", - "beautify:lamp_candleabra_pink", - "beautify:lamp_candleabra_purple", - "beautify:lamp_candleabra_red", - "beautify:lamp_candleabra_white", - "beautify:lamp_candleabra_yellow" - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/minecraft/tags/blocks/needs_stone_tool.json b/mod/beautify/src/main/resources/data/minecraft/tags/blocks/needs_stone_tool.json deleted file mode 100644 index ac39ee3a..00000000 --- a/mod/beautify/src/main/resources/data/minecraft/tags/blocks/needs_stone_tool.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "values":[ - "beautify:iron_blinds" - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/data/minecraft/tags/point_of_interest_type/acquirable_job_site.json b/mod/beautify/src/main/resources/data/minecraft/tags/point_of_interest_type/acquirable_job_site.json deleted file mode 100644 index 6153705f..00000000 --- a/mod/beautify/src/main/resources/data/minecraft/tags/point_of_interest_type/acquirable_job_site.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "values":[ - "beautify:botanist_workbench_poi" - ] -} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/fabric.mod.json b/mod/beautify/src/main/resources/fabric.mod.json deleted file mode 100644 index fb6c44a0..00000000 --- a/mod/beautify/src/main/resources/fabric.mod.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "schemaVersion": 1, - "id": "beautify", - "version": "${version}", - "name": "Beautify", - "description": "Beautify adds lots of vanilla-styled ways to spice up your builds with custom models that'll fit right in to your houses etc.", - "authors": [ - "Suel_ki" - ], - "contributors": [ - "Pandarix" - ], - "contact": { - "homepage": "https://www.curseforge.com/minecraft/mc-mods/beautify-refabricated", - "sources": "https://github.com/Suel-ki/Beautify-Refabricated", - "issues": "https://github.com/Suel-ki/Beautify-Refabricated/issues" - }, - "license": "MIT", - "icon": "icon.png", - "environment": "*", - "accessWidener": "beautify.accesswidener", - "entrypoints": { - "main": [ - "com.github.suel_ki.beautify.Beautify" - ], - "client": [ - "com.github.suel_ki.beautify.client.BeautifyClient" - ], - "jade": [ - "com.github.suel_ki.beautify.compat.jade.JadePlugin" - ], - "modmenu": [ - "com.github.suel_ki.beautify.util.ModMenuConfig" - ] - }, - "mixins": [ - "beautify.mixins.json" - ], - "depends": { - "fabricloader": ">=0.14.21", - "fabric-api": "*", - "minecraft": "~1.20", - "java": ">=17", - "cloth-config": "*" - }, - "custom": { - "modmenu": { - "links": { - "modmenu.curseforge": "https://www.curseforge.com/minecraft/mc-mods/beautify-refabricated" - } - } - } -} diff --git a/mod/beautify/src/main/resources/icon.png b/mod/beautify/src/main/resources/icon.png deleted file mode 100644 index 9a6a3fea..00000000 Binary files a/mod/beautify/src/main/resources/icon.png and /dev/null differ diff --git a/src/main/java/io/github/suel_ki/beautify/common/block/Blinds.java b/src/main/java/io/github/suel_ki/beautify/common/block/Blinds.java index e6e2fda5..d5b1890c 100644 --- a/src/main/java/io/github/suel_ki/beautify/common/block/Blinds.java +++ b/src/main/java/io/github/suel_ki/beautify/common/block/Blinds.java @@ -1,7 +1,9 @@ package io.github.suel_ki.beautify.common.block; import java.util.List; +import java.util.Map; +import com.google.common.collect.ImmutableMap; import com.mojang.serialization.MapCodec; import io.github.suel_ki.beautify.Beautify; import io.github.suel_ki.beautify.core.init.SoundInit; @@ -11,9 +13,9 @@ import net.minecraft.core.Direction; import net.minecraft.network.chat.Component; import net.minecraft.sounds.SoundSource; -import net.minecraft.world.InteractionHand; import net.minecraft.world.InteractionResult; import net.minecraft.world.entity.player.Player; +import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.TooltipFlag; import net.minecraft.world.item.context.BlockPlaceContext; @@ -33,15 +35,21 @@ public class Blinds extends HorizontalDirectionalBlock { // Voxelshapes; Hidden = Blind not visible - private static final VoxelShape OPEN_NORTH = Block.box(0, 13, 13, 16, 16, 16); - private static final VoxelShape OPEN_SOUTH = Block.box(0, 13, 0, 16, 16, 3); - private static final VoxelShape OPEN_WEST = Block.box(13, 13, 0, 16, 16, 16); - private static final VoxelShape OPEN_EAST = Block.box(0, 13, 0, 3, 16, 16); - private static final VoxelShape CLOSED_SOUTH = Block.box(0, 0, 0, 16, 16, 2); - private static final VoxelShape CLOSED_NORTH = Block.box(0, 0, 13, 16, 16, 16); - private static final VoxelShape CLOSED_EAST = Block.box(0, 0, 0, 3, 16, 16); - private static final VoxelShape CLOSED_WEST = Block.box(13, 0, 0, 16, 16, 16); - private static final VoxelShape SHAPE_HIDDEN = Block.box(0, 0, 0, 0, 0, 0); + private static final Map CLOSED_SHAPES = ImmutableMap.of( + Direction.NORTH, Block.box(0, 13, 13, 16, 16, 16), + Direction.EAST, Block.box(0, 13, 0, 3, 16, 16), + Direction.SOUTH, Block.box(0, 13, 0, 16, 16, 3), + Direction.WEST, Block.box(13, 13, 0, 16, 16, 16) + ); + + private static final Map OPEN_SHAPES = ImmutableMap.of( + Direction.NORTH, Block.box(0, 0, 13, 16, 16, 16), + Direction.EAST, Block.box(0, 0, 0, 3, 16, 16), + Direction.SOUTH, Block.box(0, 0, 0, 16, 16, 2), + Direction.WEST, Block.box(13, 0, 0, 16, 16, 16) + ); + + private static final VoxelShape SHAPE_HIDDEN = Shapes.empty(); // Open = true if blinds are down; Hidden = true if blinds are closed and there // is a blind above public static final BooleanProperty OPEN = BooleanProperty.create("open"); @@ -95,127 +103,129 @@ protected void createBlockStateDefinition(StateDefinition.Builder closed // HIDDEN: false <-> true if below root @Override - public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, - BlockHitResult result) { - if (!level.isClientSide() && hand == InteractionHand.MAIN_HAND && player.getItemInHand(hand).isEmpty()) { - // stores last value of blind - final boolean currentlyOpen = state.getValue(OPEN); - - // if the blinds open from the root - // search for the position of the topmost blind and set the pos - if (Beautify.CONFIG.blinds.opensFromRoot) { - int step = 1; - while (sameBlindType(level, pos.above(step), state)) { - ++step; - } - pos = pos.above(step - 1); + public InteractionResult useWithoutItem(BlockState state, Level level, BlockPos pos, Player player, + BlockHitResult result) { + if (level.isClientSide()) { + return InteractionResult.PASS; + } + + // stores last value of blind + final boolean currentlyOpen = state.getValue(OPEN); + + // if the blinds open from the root + // search for the position of the topmost blind and set the pos + if (Beautify.CONFIG.blinds.opensFromRoot) { + int step = 1; + while (sameBlindType(level, pos.above(step), state)) { + ++step; } + pos = pos.above(step - 1); + } - { - // changes clicked blind: open <-> closed - level.setBlock(pos, state.setValue(OPEN, !currentlyOpen), 3); + { + // changes clicked blind: open <-> closed + level.setBlock(pos, state.setValue(OPEN, !currentlyOpen), 3); - // CODE BELOW IS DISABLED IF SEARCHRADIUS = 0 - // checks for blinds below clicked blind: open <-> closed, hidden=true - if (Beautify.CONFIG.blinds.searchRadius > 0) { - for (int offsetDown = 1; offsetDown <= Beautify.CONFIG.blinds.searchRadius; ++offsetDown) { - if (sameBlindType(level, pos.below(offsetDown), state)) { - switchOpenUpdateHidden(level, pos.below(offsetDown), state, false); - } else { - break; - } + // CODE BELOW IS DISABLED IF SEARCHRADIUS = 0 + // checks for blinds below clicked blind: open <-> closed, hidden=true + if (Beautify.CONFIG.blinds.searchRadius > 0) { + for (int offsetDown = 1; offsetDown <= Beautify.CONFIG.blinds.searchRadius; ++offsetDown) { + if (sameBlindType(level, pos.below(offsetDown), state)) { + switchOpenUpdateHidden(level, pos.below(offsetDown), state, false); + } else { + break; } } + } + + if (Beautify.CONFIG.blinds.searchRadius > 0) { + // FOR BLINDS ON NORTH-SOUTH AXIS + if (state.getValue(FACING) == Direction.NORTH || state.getValue(FACING) == Direction.SOUTH) { - if (Beautify.CONFIG.blinds.searchRadius > 0) { - // FOR BLINDS ON NORTH-SOUTH AXIS - if (state.getValue(FACING) == Direction.NORTH || state.getValue(FACING) == Direction.SOUTH) { - - // checks blinds east of clicked blind - for (int offsetEast = 1; offsetEast <= Beautify.CONFIG.blinds.searchRadius / 2; ++offsetEast) { - if (sameBlindType(level, pos.east(offsetEast), state)) { - // changes east blinds: open <-> closed - level.setBlock(pos.east(offsetEast), state.setValue(OPEN, !currentlyOpen), 3); - // checks for blinds below east blinds: open <-> closed, hidden=true - for (int offsetDown = 1; offsetDown <= Beautify.CONFIG.blinds.searchRadius; ++offsetDown) { - if (sameBlindType(level, pos.below(offsetDown).east(offsetEast), state)) { - switchOpenUpdateHidden(level, pos.below(offsetDown).east(offsetEast), state, - false); - } else { - break; - } + // checks blinds east of clicked blind + for (int offsetEast = 1; offsetEast <= Beautify.CONFIG.blinds.searchRadius / 2; ++offsetEast) { + if (sameBlindType(level, pos.east(offsetEast), state)) { + // changes east blinds: open <-> closed + level.setBlock(pos.east(offsetEast), state.setValue(OPEN, !currentlyOpen), 3); + // checks for blinds below east blinds: open <-> closed, hidden=true + for (int offsetDown = 1; offsetDown <= Beautify.CONFIG.blinds.searchRadius; ++offsetDown) { + if (sameBlindType(level, pos.below(offsetDown).east(offsetEast), state)) { + switchOpenUpdateHidden(level, pos.below(offsetDown).east(offsetEast), state, + false); + } else { + break; } - } else { - break; } + } else { + break; } + } - // checks blinds west of clicked blind - for (int offsetWest = 1; offsetWest <= Beautify.CONFIG.blinds.searchRadius / 2; ++offsetWest) { - if (sameBlindType(level, pos.west(offsetWest), state)) { - // changes west blinds: open <-> closed - level.setBlock(pos.west(offsetWest), state.setValue(OPEN, !currentlyOpen), 3); - // checks for blinds below west blinds: open <-> closed, hidden=true - for (int offsetDown = 1; offsetDown <= Beautify.CONFIG.blinds.searchRadius; ++offsetDown) { - if (sameBlindType(level, pos.below(offsetDown).west(offsetWest), state)) { - switchOpenUpdateHidden(level, pos.below(offsetDown).west(offsetWest), state, - false); - } else { - break; - } + // checks blinds west of clicked blind + for (int offsetWest = 1; offsetWest <= Beautify.CONFIG.blinds.searchRadius / 2; ++offsetWest) { + if (sameBlindType(level, pos.west(offsetWest), state)) { + // changes west blinds: open <-> closed + level.setBlock(pos.west(offsetWest), state.setValue(OPEN, !currentlyOpen), 3); + // checks for blinds below west blinds: open <-> closed, hidden=true + for (int offsetDown = 1; offsetDown <= Beautify.CONFIG.blinds.searchRadius; ++offsetDown) { + if (sameBlindType(level, pos.below(offsetDown).west(offsetWest), state)) { + switchOpenUpdateHidden(level, pos.below(offsetDown).west(offsetWest), state, + false); + } else { + break; } - } else { - break; } + } else { + break; } } + } - // FOR BLINDS ON EAST-WEST AXIS - if (state.getValue(FACING) == Direction.EAST || state.getValue(FACING) == Direction.WEST) { - - // checks blinds north of clicked blind - for (int offsetNorth = 1; offsetNorth <= Beautify.CONFIG.blinds.searchRadius / 2; ++offsetNorth) { - if (sameBlindType(level, pos.north(offsetNorth), state)) { - // changes north blinds: open <-> closed - level.setBlock(pos.north(offsetNorth), state.setValue(OPEN, !currentlyOpen), 3); - // checks for blinds below north blinds: open <-> closed, hidden=true - for (int offsetDown = 1; offsetDown <= Beautify.CONFIG.blinds.searchRadius; ++offsetDown) { - if (sameBlindType(level, pos.below(offsetDown).north(offsetNorth), state)) { - switchOpenUpdateHidden(level, pos.below(offsetDown).north(offsetNorth), - state, false); - } else { - break; - } + // FOR BLINDS ON EAST-WEST AXIS + if (state.getValue(FACING) == Direction.EAST || state.getValue(FACING) == Direction.WEST) { + + // checks blinds north of clicked blind + for (int offsetNorth = 1; offsetNorth <= Beautify.CONFIG.blinds.searchRadius / 2; ++offsetNorth) { + if (sameBlindType(level, pos.north(offsetNorth), state)) { + // changes north blinds: open <-> closed + level.setBlock(pos.north(offsetNorth), state.setValue(OPEN, !currentlyOpen), 3); + // checks for blinds below north blinds: open <-> closed, hidden=true + for (int offsetDown = 1; offsetDown <= Beautify.CONFIG.blinds.searchRadius; ++offsetDown) { + if (sameBlindType(level, pos.below(offsetDown).north(offsetNorth), state)) { + switchOpenUpdateHidden(level, pos.below(offsetDown).north(offsetNorth), + state, false); + } else { + break; } - } else { - break; } + } else { + break; } + } - // checks blinds south of clicked blind - for (int offsetSouth = 1; offsetSouth <= Beautify.CONFIG.blinds.searchRadius / 2; ++offsetSouth) { - if (sameBlindType(level, pos.south(offsetSouth), state)) { - // changes south blinds: open <-> closed - level.setBlock(pos.south(offsetSouth), state.setValue(OPEN, !currentlyOpen), 3); - // checks for blinds below south blinds: open <-> closed, hidden=true - for (int offsetDown = 1; offsetDown <= Beautify.CONFIG.blinds.searchRadius; ++offsetDown) { - if (sameBlindType(level, pos.below(offsetDown).south(offsetSouth), state)) { - switchOpenUpdateHidden(level, pos.below(offsetDown).south(offsetSouth), - state, false); - } else { - break; - } + // checks blinds south of clicked blind + for (int offsetSouth = 1; offsetSouth <= Beautify.CONFIG.blinds.searchRadius / 2; ++offsetSouth) { + if (sameBlindType(level, pos.south(offsetSouth), state)) { + // changes south blinds: open <-> closed + level.setBlock(pos.south(offsetSouth), state.setValue(OPEN, !currentlyOpen), 3); + // checks for blinds below south blinds: open <-> closed, hidden=true + for (int offsetDown = 1; offsetDown <= Beautify.CONFIG.blinds.searchRadius; ++offsetDown) { + if (sameBlindType(level, pos.below(offsetDown).south(offsetSouth), state)) { + switchOpenUpdateHidden(level, pos.below(offsetDown).south(offsetSouth), + state, false); + } else { + break; } - } else { - break; } + } else { + break; } } - level.playSound(null, pos, - currentlyOpen ? SoundInit.BLINDS_CLOSE : SoundInit.BLINDS_OPEN, - SoundSource.BLOCKS, 1, 1); - return InteractionResult.SUCCESS; } + level.playSound(null, pos, + currentlyOpen ? SoundInit.BLINDS_CLOSE : SoundInit.BLINDS_OPEN, + SoundSource.BLOCKS, 1, 1); + return InteractionResult.SUCCESS; } } return InteractionResult.SUCCESS; @@ -225,8 +235,14 @@ public InteractionResult use(BlockState state, Level level, BlockPos pos, Player // block in level at pos is the same kind of blind // and facing is the same as state private boolean sameBlindType(LevelAccessor level, BlockPos pos, BlockState state) { - return level.getBlockState(pos).getBlock() == this.asBlock() - && level.getBlockState(pos).getValue(FACING) == state.getValue(FACING); + BlockState blindsState = level.getBlockState(pos); + Block block = blindsState.getBlock(); + + if (block == this && state.hasProperty(FACING)) { + return blindsState.getValue(FACING) == state.getValue(FACING); + } + + return false; } // method for changing the blockstates of blinds @@ -273,27 +289,16 @@ public VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, Co return SHAPE_HIDDEN; } - if (!state.getValue(OPEN)) { - return switch (state.getValue(FACING)) { - case NORTH -> OPEN_NORTH; - case SOUTH -> OPEN_SOUTH; - case WEST -> OPEN_WEST; - case EAST -> OPEN_EAST; - default -> OPEN_NORTH; - }; - } + Direction facing = state.getValue(FACING); + boolean isOpen = state.getValue(OPEN); + + Map shapes = isOpen ? OPEN_SHAPES : CLOSED_SHAPES; - return switch (state.getValue(FACING)) { - case NORTH -> CLOSED_NORTH; - case SOUTH -> CLOSED_SOUTH; - case WEST -> CLOSED_WEST; - case EAST -> CLOSED_EAST; - default -> CLOSED_NORTH; - }; + return shapes.get(facing); } @Override - public void appendHoverText(ItemStack stack, BlockGetter level, List component, TooltipFlag flag) { + public void appendHoverText(ItemStack stack, Item.TooltipContext tooltipContext, List component, TooltipFlag flag) { if (!Screen.hasShiftDown()) { component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); } @@ -302,6 +307,6 @@ public void appendHoverText(ItemStack stack, BlockGetter level, List component.add(Component.translatable("tooltip.beautify.blinds.1").withStyle(ChatFormatting.GRAY)); component.add(Component.translatable("tooltip.beautify.blinds.2").withStyle(ChatFormatting.GRAY)); } - super.appendHoverText(stack, level, component, flag); + super.appendHoverText(stack, tooltipContext, component, flag); } } diff --git a/src/main/java/io/github/suel_ki/beautify/common/block/BookStack.java b/src/main/java/io/github/suel_ki/beautify/common/block/BookStack.java index e8c6f909..2bf240e3 100644 --- a/src/main/java/io/github/suel_ki/beautify/common/block/BookStack.java +++ b/src/main/java/io/github/suel_ki/beautify/common/block/BookStack.java @@ -1,8 +1,10 @@ package io.github.suel_ki.beautify.common.block; import java.util.List; +import java.util.Map; import java.util.Random; +import com.google.common.collect.ImmutableMap; import com.mojang.serialization.MapCodec; import io.github.suel_ki.beautify.core.init.SoundInit; import net.minecraft.ChatFormatting; @@ -13,10 +15,10 @@ import net.minecraft.server.level.ServerLevel; import net.minecraft.sounds.SoundSource; import net.minecraft.util.RandomSource; -import net.minecraft.world.InteractionHand; import net.minecraft.world.InteractionResult; import net.minecraft.world.entity.Entity; import net.minecraft.world.entity.player.Player; +import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.TooltipFlag; import net.minecraft.world.item.context.BlockPlaceContext; @@ -31,19 +33,23 @@ import net.minecraft.world.level.block.state.properties.IntegerProperty; import net.minecraft.world.phys.BlockHitResult; import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.Shapes; import net.minecraft.world.phys.shapes.VoxelShape; public class BookStack extends HorizontalDirectionalBlock { - private static final int modelcount = 7; // number of models the bookstack has - public static final IntegerProperty BOOKSTACK_MODEL = IntegerProperty.create("bookstack_model", 0, modelcount - 1); - // Different Voxelshapes for models of BOOKSTACK_MODEL - private static final VoxelShape SHAPE0 = Block.box(1, 0, 1, 15, 4, 15); - private static final VoxelShape SHAPE1 = Block.box(1, 0, 1, 15, 4, 15); - private static final VoxelShape SHAPE2 = Block.box(0, 0, 0, 16, 1.5, 16); - private static final VoxelShape SHAPE3 = Block.box(0, 0, 0, 16, 9.5, 16); - private static final VoxelShape SHAPE4 = Block.box(1, 0, 1, 15, 5, 15); - private static final VoxelShape SHAPE5 = Block.box(0.5, 0, 0.5, 15.5, 7.25, 15.5); - private static final VoxelShape SHAPE6 = Block.box(1, 0, 1, 15, 12, 15); + private static final int MODELCOUNT = 7; // number of models the bookstack has + public static final IntegerProperty BOOKSTACK_MODEL = IntegerProperty.create("bookstack_model", 0, MODELCOUNT - 1); + + //Map of hitboxes for every model the model can be + private static final Map SHAPES_FOR_MODEL = ImmutableMap.of( + 0, Shapes.or(Block.box(1, 0, 1, 15, 4, 15)), + 1, Shapes.or(Block.box(1, 0, 1, 15, 4, 15)), + 2, Shapes.or(Block.box(0, 0, 0, 16, 1.5, 16)), + 3, Shapes.or(Block.box(0, 0, 0, 16, 9.5, 16)), + 4, Shapes.or(Block.box(1, 0, 1, 15, 5, 15)), + 5, Shapes.or(Block.box(0.5, 0, 0.5, 15.5, 7.25, 15.5)), + 6, Shapes.or(Block.box(1, 0, 1, 15, 12, 15)) + ); public static final MapCodec CODEC = simpleCodec(BookStack::new); @@ -60,19 +66,9 @@ protected MapCodec codec() { @Override public VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, CollisionContext context) { - return switch (state.getValue(BOOKSTACK_MODEL)) { - case 0 -> SHAPE0; - case 1 -> SHAPE1; - case 2 -> SHAPE2; - case 3 -> SHAPE3; - case 4 -> SHAPE4; - case 5 -> SHAPE5; - case 6 -> SHAPE6; - default -> SHAPE0; - }; + return SHAPES_FOR_MODEL.get(state.getValue(BOOKSTACK_MODEL)); } - @SuppressWarnings("deprecation") @Override public BlockState updateShape(BlockState state, Direction direction, BlockState neighborState, LevelAccessor level, BlockPos currentPos, BlockPos neighborPos) { @@ -87,7 +83,6 @@ public boolean canSurvive(BlockState state, LevelReader level, BlockPos pos) { return canSupportRigidBlock(level, pos.below()); } - @Override public void tick(BlockState state, ServerLevel level, BlockPos pos, RandomSource rand) { if (!state.canSurvive(level, pos)) { @@ -97,14 +92,16 @@ public void tick(BlockState state, ServerLevel level, BlockPos pos, RandomSource // changing the model of the bookstack by shift-rightclicking @Override - public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, - BlockHitResult result) { - if (!level.isClientSide() && hand == InteractionHand.MAIN_HAND && player.getItemInHand(hand).isEmpty() - && player.isShiftKeyDown()) { + public InteractionResult useWithoutItem(BlockState state, Level level, BlockPos pos, Player player, + BlockHitResult result) { + if (level.isClientSide()) { + return InteractionResult.SUCCESS; + } + if (player.isShiftKeyDown()) { int currentModel = state.getValue(BOOKSTACK_MODEL); // current index level.playSound(null, pos, SoundInit.BOOKSTACK_NEXT, SoundSource.BLOCKS, 1, 1); // reset if it surpasses the number of possible models - if (currentModel + 1 > modelcount - 1) { + if (currentModel + 1 > MODELCOUNT - 1) { level.setBlock(pos, state.setValue(BOOKSTACK_MODEL, 0), 3); } else { // increases index level.setBlock(pos, state.setValue(BOOKSTACK_MODEL, currentModel + 1), 3); @@ -122,10 +119,8 @@ public void fallOn(Level level, BlockState state, BlockPos pos, Entity entity, f @Override public BlockState getStateForPlacement(BlockPlaceContext context) { - final int min = 0; - final int max = modelcount; Random rand = new Random(); - int randomNum = rand.nextInt((max - min)); + int randomNum = rand.nextInt((MODELCOUNT)); return this.defaultBlockState().setValue(FACING, context.getHorizontalDirection().getOpposite()) .setValue(BOOKSTACK_MODEL, randomNum); @@ -139,7 +134,7 @@ protected void createBlockStateDefinition(StateDefinition.Builder component, TooltipFlag flag) { + public void appendHoverText(ItemStack stack, Item.TooltipContext tooltipContext, List component, TooltipFlag flag) { if (!Screen.hasShiftDown()) { component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); } @@ -150,6 +145,6 @@ public void appendHoverText(ItemStack stack, BlockGetter getter, List component.add(Component.translatable("tooltip.beautify.bookstack.2") .withStyle(ChatFormatting.GRAY)); } - super.appendHoverText(stack, getter, component, flag); + super.appendHoverText(stack, tooltipContext, component, flag); } } diff --git a/src/main/java/io/github/suel_ki/beautify/common/block/BotanistWorkbench.java b/src/main/java/io/github/suel_ki/beautify/common/block/BotanistWorkbench.java index 013e7226..95f514d0 100644 --- a/src/main/java/io/github/suel_ki/beautify/common/block/BotanistWorkbench.java +++ b/src/main/java/io/github/suel_ki/beautify/common/block/BotanistWorkbench.java @@ -1,13 +1,16 @@ package io.github.suel_ki.beautify.common.block; import java.util.List; +import java.util.Map; +import com.google.common.collect.ImmutableMap; import com.mojang.serialization.MapCodec; import net.minecraft.ChatFormatting; import net.minecraft.client.gui.screens.Screen; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.network.chat.Component; +import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.TooltipFlag; import net.minecraft.world.item.context.BlockPlaceContext; @@ -21,15 +24,17 @@ import net.minecraft.world.phys.shapes.VoxelShape; public class BotanistWorkbench extends HorizontalDirectionalBlock { - - private static final VoxelShape SHAPE_NORTH = Shapes.or(box(2, 0, 0, 16, 12, 14.25), - box(9.5, 12, 8.5, 13.5, 16, 12.5)); - private static final VoxelShape SHAPE_SOUTH = Shapes.or(box(0, 0, 1.75, 14, 12, 16), - box(2.5, 12, 3.5, 6.5, 16, 7.5)); - private static final VoxelShape SHAPE_EAST = Shapes.or(box(1.75, 0, 2, 16, 12, 16), - box(3.5, 12, 9.5, 7.5, 16, 13.5)); - private static final VoxelShape SHAPE_WEST = Shapes.or(box(0, 0, 0, 14.25, 12, 14), - box(8.5, 12, 2.5, 12.5, 16, 6.5)); + //Map of hitboxes for direction the model can be facing + private static final Map SHAPES_FOR_MODEL = ImmutableMap.of( + Direction.NORTH, Shapes.or(box(2, 0, 0, 16, 12, 14.25), + box(9.5, 12, 8.5, 13.5, 16, 12.5)), + Direction.SOUTH, Shapes.or(box(0, 0, 1.75, 14, 12, 16), + box(2.5, 12, 3.5, 6.5, 16, 7.5)), + Direction.WEST, Shapes.or(box(0, 0, 0, 14.25, 12, 14), + box(8.5, 12, 2.5, 12.5, 16, 6.5)), + Direction.EAST, Shapes.or(box(1.75, 0, 2, 16, 12, 16), + box(3.5, 12, 9.5, 7.5, 16, 13.5)) + ); public static final MapCodec CODEC = simpleCodec(BotanistWorkbench::new); @@ -50,13 +55,7 @@ public BlockState getStateForPlacement(BlockPlaceContext context) { @Override public VoxelShape getShape(BlockState state, BlockGetter getter, BlockPos pos, CollisionContext context) { - return switch (state.getValue(FACING)) { - case NORTH -> SHAPE_NORTH; - case SOUTH -> SHAPE_SOUTH; - case EAST -> SHAPE_EAST; - case WEST -> SHAPE_WEST; - default -> SHAPE_NORTH; - }; + return SHAPES_FOR_MODEL.get(state.getValue(FACING)); } @Override @@ -66,7 +65,7 @@ protected void createBlockStateDefinition(StateDefinition.Builder component, TooltipFlag flag) { + public void appendHoverText(ItemStack stack, Item.TooltipContext tooltipContext, List component, TooltipFlag flag) { if (!Screen.hasShiftDown()) { component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); } @@ -75,6 +74,6 @@ public void appendHoverText(ItemStack stack, BlockGetter getter, List component.add(Component.translatable("tooltip.beautify.botanist_workbench.1") .withStyle(ChatFormatting.GRAY)); } - super.appendHoverText(stack, getter, component, flag); + super.appendHoverText(stack, tooltipContext, component, flag); } } diff --git a/src/main/java/io/github/suel_ki/beautify/common/block/HangingPot.java b/src/main/java/io/github/suel_ki/beautify/common/block/HangingPot.java index 7d140d54..89e3f6c8 100644 --- a/src/main/java/io/github/suel_ki/beautify/common/block/HangingPot.java +++ b/src/main/java/io/github/suel_ki/beautify/common/block/HangingPot.java @@ -12,7 +12,7 @@ import net.minecraft.sounds.SoundSource; import net.minecraft.stats.Stats; import net.minecraft.world.InteractionHand; -import net.minecraft.world.InteractionResult; +import net.minecraft.world.ItemInteractionResult; import net.minecraft.world.entity.item.ItemEntity; import net.minecraft.world.entity.player.Player; import net.minecraft.world.item.Item; @@ -35,14 +35,14 @@ import net.minecraft.world.phys.shapes.VoxelShape; public class HangingPot extends LanternBlock { - private static final List validFlowers = Arrays.asList(Items.AIR, Items.ROSE_BUSH, Items.LILAC, + public static final List VALID_FLOWERS = Arrays.asList(Items.AIR, Items.ROSE_BUSH, Items.LILAC, Items.BLUE_ORCHID, Items.VINE, Items.SUNFLOWER, Items.PEONY, Items.AZURE_BLUET, Items.RED_TULIP, Items.ORANGE_TULIP, Items.WHITE_TULIP, Items.PINK_TULIP, Items.ALLIUM, Items.DANDELION, Items.POPPY, Items.GLOW_LICHEN, Items.OXEYE_DAISY, Items.LILY_OF_THE_VALLEY, Items.CORNFLOWER, Items.WEEPING_VINES, - Items.TWISTING_VINES, Items.WITHER_ROSE, Items.GLOW_BERRIES, Items.SWEET_BERRIES, Items.GRASS_BLOCK, Items.FERN); + Items.TWISTING_VINES, Items.WITHER_ROSE, Items.GLOW_BERRIES, Items.SWEET_BERRIES, Items.SHORT_GRASS, Items.FERN); // POTFLOWER indicates which index of the flowers List below is active - public static final IntegerProperty POTFLOWER = IntegerProperty.create("potflower", 0, validFlowers.size() - 1); + public static final IntegerProperty POTFLOWER = IntegerProperty.create("potflower", 0, VALID_FLOWERS.size() - 1); public static final BooleanProperty GROWN = BooleanProperty.create("grown"); @@ -57,28 +57,29 @@ public HangingPot(Properties properties) { private static final VoxelShape STANDING_SHAPE = Shapes.or(box(5, 0, 5, 11, 5, 11), box(4, 5, 4, 12, 8, 12)); public List getValidFlowers() { - return validFlowers; + return VALID_FLOWERS; } @Override public VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, CollisionContext context) { - if (state.getValue(HANGING)) { - return HANGING_SHAPE; - } - return STANDING_SHAPE; + return state.getValue(HANGING) ? HANGING_SHAPE : STANDING_SHAPE; } - @SuppressWarnings("deprecation") @Override public void neighborChanged(BlockState state, Level level, BlockPos pos, Block block, BlockPos blockPos, boolean bool) { - if (state.getValue(GROWN)) { //if the plant is grown long + //if the plant is grown long + if (state.getValue(GROWN)) { + //if the neighbour is a model that clips into the pot if (blockPos.equals(pos.below()) - && level.getBlockState(pos.below()).isFaceSturdy(level, pos.below(), Direction.UP)) { //if the neighbour is a model that clips into the pot + && level.getBlockState(pos.below()).isFaceSturdy(level, pos.below(), Direction.UP)) { + //make pot ungrown again level.setBlock(pos, state.setValue(GROWN, false), 3); + //spawn item from plant inside ItemEntity Item = new ItemEntity(level, pos.getX(), pos.getY(), pos.getZ(), - new ItemStack(validFlowers.get(state.getValue(POTFLOWER)))); + new ItemStack(VALID_FLOWERS.get(state.getValue(POTFLOWER)))); level.addFreshEntity(Item); + //play breaking sound level.playSound(null, pos, SoundEvents.HANGING_ROOTS_BREAK, SoundSource.BLOCKS, 1, 1); } } @@ -86,16 +87,16 @@ public void neighborChanged(BlockState state, Level level, BlockPos pos, Block b } @Override - public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, - BlockHitResult result) { + public ItemInteractionResult useItemOn(ItemStack stack, BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, + BlockHitResult result) { - if (!level.isClientSide() && hand == InteractionHand.MAIN_HAND) { + if (!level.isClientSide()) { ItemStack playerStack = player.getItemInHand(hand); // saving ItemStack // growing plant // block below must not be sturdy to prevent clipping models if (playerStack.getItem().equals(Items.BONE_MEAL) && state.getValue(POTFLOWER) != 0 - /*&& !level.getBlockState(pos.below()).isFaceSturdy(level, pos.below(), Direction.UP)*/) { + && !level.getBlockState(pos.below()).isFaceSturdy(level, pos.below(), Direction.UP)) { if (!state.getValue(GROWN)) { level.levelEvent(1505, result.getBlockPos(), 0); //level.playSound(null, pos, SoundEvents.BONE_MEAL_USE, SoundSource.BLOCKS, 1, 1); @@ -103,7 +104,7 @@ public InteractionResult use(BlockState state, Level level, BlockPos pos, Player playerStack.shrink(1); } level.setBlock(pos, state.setValue(GROWN, true), 3); - return InteractionResult.SUCCESS; + return ItemInteractionResult.SUCCESS; } } @@ -113,35 +114,35 @@ public InteractionResult use(BlockState state, Level level, BlockPos pos, Player level.playSound(null, pos, SoundEvents.SHEEP_SHEAR, SoundSource.BLOCKS, 1, 1); level.setBlock(pos, state.setValue(GROWN, false), 3); ItemEntity Item = new ItemEntity(level, pos.getX(), pos.getY(), pos.getZ(), - new ItemStack(validFlowers.get(state.getValue(POTFLOWER)))); + new ItemStack(VALID_FLOWERS.get(state.getValue(POTFLOWER)))); level.addFreshEntity(Item); - return InteractionResult.SUCCESS; + return ItemInteractionResult.SUCCESS; } // if there is a flower if (state.getValue(POTFLOWER) != 0) { // giving flower and clearing pot if hand empty if (playerStack.isEmpty()) { - player.setItemInHand(hand, new ItemStack(validFlowers.get(state.getValue(POTFLOWER)), + player.setItemInHand(hand, new ItemStack(VALID_FLOWERS.get(state.getValue(POTFLOWER)), state.getValue(GROWN) ? 2 : 1)); // giving 1 or 2 of plant (grown or not) level.setBlock(pos, state.setValue(POTFLOWER, 0).setValue(GROWN, false), 3); // emptying the pot level.playSound(null, pos, SoundEvents.COMPOSTER_READY, SoundSource.BLOCKS, 1, 1); - return InteractionResult.SUCCESS; - } else if (playerStack.is(validFlowers.get(state.getValue(POTFLOWER))) + return ItemInteractionResult.SUCCESS; + } else if (playerStack.is(VALID_FLOWERS.get(state.getValue(POTFLOWER))) && playerStack.getCount() < playerStack.getMaxStackSize()) { playerStack.grow(state.getValue(GROWN) ? 2 : 1); // giving 1 or 2 of plant (grown or not) level.setBlock(pos, state.setValue(POTFLOWER, 0).setValue(GROWN, false), 3); level.playSound(null, pos, SoundEvents.AZALEA_LEAVES_BREAK, SoundSource.BLOCKS, 1, 1); - return InteractionResult.SUCCESS; + return ItemInteractionResult.SUCCESS; } // else just return } else { // if there is no flower // checks if the flower in hand matches the available types - for (Item flower : validFlowers) { + for (Item flower : VALID_FLOWERS) { if (playerStack.getItem().equals(flower)) { - level.setBlock(pos, state.setValue(POTFLOWER, validFlowers.indexOf(flower)), 3); + level.setBlock(pos, state.setValue(POTFLOWER, VALID_FLOWERS.indexOf(flower)), 3); player.awardStat(Stats.POT_FLOWER); if (!flower.equals(Items.AIR)) { level.playSound(null, pos, SoundEvents.AZALEA_PLACE, SoundSource.BLOCKS, 1, 1); @@ -149,15 +150,15 @@ public InteractionResult use(BlockState state, Level level, BlockPos pos, Player if (!player.getAbilities().instabuild) { playerStack.shrink(1); } - return InteractionResult.SUCCESS; + return ItemInteractionResult.SUCCESS; } } // if the flower is not a valid one } - return InteractionResult.CONSUME; + return ItemInteractionResult.CONSUME; } // end of statement - return InteractionResult.CONSUME; + return ItemInteractionResult.CONSUME; } @Override @@ -170,7 +171,7 @@ private boolean isEmpty(BlockState state) { } public Block getContent(BlockState state) { - return Block.byItem(validFlowers.get(state.getValue(POTFLOWER))); + return Block.byItem(VALID_FLOWERS.get(state.getValue(POTFLOWER))); } // creating Blockstates @@ -181,7 +182,7 @@ protected void createBlockStateDefinition(StateDefinition.Builder component, TooltipFlag flag) { + public void appendHoverText(ItemStack stack, Item.TooltipContext tooltipContext, List component, TooltipFlag flag) { if (!Screen.hasShiftDown() && !Screen.hasControlDown()) { component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); component.add(Component.translatable("tooltip.beautify.plantlist").withStyle(ChatFormatting.YELLOW)); @@ -195,13 +196,6 @@ public void appendHoverText(ItemStack stack, BlockGetter getter, List component.add(Component.translatable("tooltip.beautify.hanging_pot.3") .withStyle(ChatFormatting.GRAY)); } - - if (Screen.hasControlDown()) { - component.add(Component.translatable("tooltip.beautify.hanging_pot.plant_header").withStyle(ChatFormatting.UNDERLINE) - .withStyle(ChatFormatting.BOLD).withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.hanging_pot.plants") - .withStyle(ChatFormatting.GRAY)); - } - super.appendHoverText(stack, getter, component, flag); + super.appendHoverText(stack, tooltipContext, component, flag); } } \ No newline at end of file diff --git a/src/main/java/io/github/suel_ki/beautify/common/block/LampBamboo.java b/src/main/java/io/github/suel_ki/beautify/common/block/LampBamboo.java index 9fea7fbc..7ef88523 100644 --- a/src/main/java/io/github/suel_ki/beautify/common/block/LampBamboo.java +++ b/src/main/java/io/github/suel_ki/beautify/common/block/LampBamboo.java @@ -8,9 +8,9 @@ import net.minecraft.network.chat.Component; import net.minecraft.sounds.SoundEvents; import net.minecraft.sounds.SoundSource; -import net.minecraft.world.InteractionHand; import net.minecraft.world.InteractionResult; import net.minecraft.world.entity.player.Player; +import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.TooltipFlag; import net.minecraft.world.level.BlockGetter; @@ -36,18 +36,14 @@ public LampBamboo(Properties properties) { } @Override - public VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, - CollisionContext context) { - if (state.getValue(HANGING)) { - return SHAPE_HANGING; - } - return SHAPE_STANDING; + public VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, CollisionContext context) { + return state.getValue(HANGING) ? SHAPE_HANGING : SHAPE_STANDING; } @Override - public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, - BlockHitResult result) { - if (!level.isClientSide() && hand == InteractionHand.MAIN_HAND && player.getItemInHand(hand).isEmpty()) { + public InteractionResult useWithoutItem(BlockState state, Level level, BlockPos pos, Player player, + BlockHitResult result) { + if (!level.isClientSide()) { level.setBlock(pos, state.setValue(ON, !state.getValue(ON)), 3); float f = state.getValue(ON) ? 0.5F : 0.6F; level.playSound(null, pos, SoundEvents.LEVER_CLICK, SoundSource.BLOCKS, 0.25F, f); @@ -63,7 +59,7 @@ protected void createBlockStateDefinition(StateDefinition.Builder component, TooltipFlag flag) { + public void appendHoverText(ItemStack stack, Item.TooltipContext tooltipContext, List component, TooltipFlag flag) { if (!Screen.hasShiftDown()) { component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); } @@ -74,6 +70,6 @@ public void appendHoverText(ItemStack stack, BlockGetter getter, List component.add(Component.translatable("tooltip.beautify.lamp.2") .withStyle(ChatFormatting.GRAY)); } - super.appendHoverText(stack, getter, component, flag); + super.appendHoverText(stack, tooltipContext, component, flag); } } diff --git a/src/main/java/io/github/suel_ki/beautify/common/block/LampCandelabra.java b/src/main/java/io/github/suel_ki/beautify/common/block/LampCandelabra.java new file mode 100644 index 00000000..357c0ce3 --- /dev/null +++ b/src/main/java/io/github/suel_ki/beautify/common/block/LampCandelabra.java @@ -0,0 +1,196 @@ +package io.github.suel_ki.beautify.common.block; + +import java.util.List; + +import net.fabricmc.api.EnvType; +import net.fabricmc.api.Environment; +import net.minecraft.ChatFormatting; +import net.minecraft.client.gui.screens.Screen; +import net.minecraft.core.BlockPos; +import net.minecraft.core.Direction; +import net.minecraft.core.particles.ParticleOptions; +import net.minecraft.core.particles.ParticleTypes; +import net.minecraft.network.chat.Component; +import net.minecraft.sounds.SoundEvents; +import net.minecraft.sounds.SoundSource; +import net.minecraft.util.RandomSource; +import net.minecraft.world.InteractionHand; +import net.minecraft.world.ItemInteractionResult; +import net.minecraft.world.entity.LivingEntity; +import net.minecraft.world.entity.player.Player; +import net.minecraft.world.entity.projectile.Projectile; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.Items; +import net.minecraft.world.item.TooltipFlag; +import net.minecraft.world.item.context.BlockPlaceContext; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.LevelAccessor; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.LanternBlock; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.StateDefinition; +import net.minecraft.world.level.block.state.properties.BlockStateProperties; +import net.minecraft.world.level.block.state.properties.BooleanProperty; +import net.minecraft.world.level.block.state.properties.DirectionProperty; +import net.minecraft.world.level.gameevent.GameEvent; +import net.minecraft.world.level.material.FluidState; +import net.minecraft.world.level.material.Fluids; +import net.minecraft.world.phys.BlockHitResult; +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; + +public class LampCandelabra extends LanternBlock { + public static final BooleanProperty ON = BooleanProperty.create("on"); + public static final DirectionProperty FACING = BlockStateProperties.HORIZONTAL_FACING; + + private static final VoxelShape SHAPE_HANGING = Shapes.join(Block.box(0, 2, 6.5, 16, 16, 9.5), Block.box(6.5, 2, 0, 9.5, 16, 16), BooleanOp.OR); + private static final VoxelShape SHAPE_STANDING = Block.box(5, 0, 5, 11, 14, 11); + + public LampCandelabra(Properties properties) { + super(properties); + this.registerDefaultState(this.defaultBlockState().setValue(ON, false).setValue(FACING, Direction.NORTH)); + } + + public boolean isOn(BlockState state) { + return state.getValue(ON); + } + + private static void setOn(LevelAccessor level, BlockState state, BlockPos pos, boolean on) { + level.setBlock(pos, state.setValue(ON, on), 11); + level.gameEvent(null, GameEvent.BLOCK_CHANGE, pos); + if (on) { + level.playSound(null, pos, SoundEvents.FLINTANDSTEEL_USE, SoundSource.BLOCKS, 1.0F, 1.0F); + } else { + level.playSound(null, pos, SoundEvents.CANDLE_EXTINGUISH, SoundSource.BLOCKS, 1.0F, 1.0F); + } + } + + private static void extinguish(BlockState state, LevelAccessor level, BlockPos pos) { + setOn(level, state, pos, false); + addParticle(ParticleTypes.SMOKE, state, level, pos); + } + + private static void addParticle(ParticleOptions particle, BlockState state, LevelAccessor level, BlockPos pos) { + double d0 = (double) pos.getX() + 0.5D; + double d1 = (double) pos.getY() + 1D; + double d2 = (double) pos.getZ() + 0.5D; + if (state.getValue(HANGING)) { + level.addParticle(particle, d0 + 0.4, d1 - 0.15, d2, 0.0D, 0.0D, 0.0D); + level.addParticle(particle, d0 - 0.4, d1 - 0.15, d2, 0.0D, 0.0D, 0.0D); + level.addParticle(particle, d0, d1 - 0.15, d2 + 0.4, 0.0D, 0.0D, 0.0D); + level.addParticle(particle, d0, d1 - 0.15, d2 - 0.4, 0.0D, 0.0D, 0.0D); + } else { + if (state.getValue(FACING) == Direction.EAST || state.getValue(FACING) == Direction.WEST) { + level.addParticle(particle, d0, d1, d2, 0.0D, 0.0D, 0.0D); + level.addParticle(particle, d0, d1 + 0.05, d2 + 0.35, 0.0D, 0.0D, 0.0D); + level.addParticle(particle, d0, d1 + 0.05, d2 - 0.35, 0.0D, 0.0D, 0.0D); + } else { + level.addParticle(particle, d0, d1, d2, 0.0D, 0.0D, 0.0D); + level.addParticle(particle, d0 + 0.35, d1 + 0.05, d2, 0.0D, 0.0D, 0.0D); + level.addParticle(particle, d0 - 0.35, d1 + 0.05, d2, 0.0D, 0.0D, 0.0D); + } + } + } + + @Override + public BlockState getStateForPlacement(BlockPlaceContext context) { + FluidState fluidstate = context.getLevel().getFluidState(context.getClickedPos()); + + for (Direction direction : context.getNearestLookingDirections()) { + if (direction.getAxis() == Direction.Axis.Y) { + BlockState blockstate = this.defaultBlockState().setValue(HANGING, + direction == Direction.UP); + if (blockstate.canSurvive(context.getLevel(), context.getClickedPos())) { + return blockstate.setValue(WATERLOGGED, fluidstate.getType() == Fluids.WATER) + .setValue(FACING, context.getHorizontalDirection().getOpposite()) + .setValue(ON, false); + } + } + } + return null; + } + + @Override + public VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, CollisionContext context) { + return state.getValue(HANGING) ? SHAPE_HANGING : SHAPE_STANDING; + } + + @Override + public void onProjectileHit(Level level, BlockState state, BlockHitResult hitResult, Projectile projectile) { + if (!level.isClientSide && projectile.isOnFire() && !isOn(state) && !state.getValue(WATERLOGGED)) { + setOn(level, state, hitResult.getBlockPos(), true); + } + } + + @Override + public ItemInteractionResult useItemOn(ItemStack stack, BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, + BlockHitResult result) { + if (!level.isClientSide()) { + ItemStack playerStack = player.getItemInHand(hand); + // Ignite/Extinguish + if (state.getValue(WATERLOGGED)) { + return ItemInteractionResult.PASS_TO_DEFAULT_BLOCK_INTERACTION; + } + if (this.isOn(state) && !player.isShiftKeyDown() && playerStack.isEmpty()) { + extinguish(state, level, pos); + return ItemInteractionResult.SUCCESS; + } else if (!this.isOn(state) && playerStack.is(Items.FLINT_AND_STEEL)) { + setOn(level, state, pos, true); + playerStack.hurtAndBreak(1, player, LivingEntity.getSlotForHand(hand)); + return ItemInteractionResult.SUCCESS; + } + } + return ItemInteractionResult.SUCCESS; + } + + @Environment(EnvType.CLIENT) + @Override + public void animateTick(BlockState state, Level level, BlockPos pos, RandomSource rand) { + if (isOn(state)) { + addParticle(ParticleTypes.SMALL_FLAME, state, level, pos); + } + } + + @Override + protected void createBlockStateDefinition(StateDefinition.Builder builder) { + super.createBlockStateDefinition(builder); + builder.add(FACING, ON); + } + + @Override + public boolean placeLiquid(LevelAccessor level, BlockPos pos, BlockState state, FluidState fluidState) { + if (!(Boolean)state.getValue(WATERLOGGED) && fluidState.getType() == Fluids.WATER) { + BlockState state2 = state.setValue(WATERLOGGED, true); + if (isOn(state)) { + extinguish(state2, level, pos); + } else { + level.setBlock(pos, state2, 3); + } + level.scheduleTick(pos, fluidState.getType(), fluidState.getType().getTickDelay(level)); + return true; + } else { + return false; + } + } + + @Override + public void appendHoverText(ItemStack stack, Item.TooltipContext tooltipContext, List component, TooltipFlag flag) { + if (!Screen.hasShiftDown()) { + component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); + } + + if (Screen.hasShiftDown()) { + component.add(Component.translatable("tooltip.beautify.candelabra.1") + .withStyle(ChatFormatting.GRAY)); + component.add(Component.translatable("tooltip.beautify.candelabra.2") + .withStyle(ChatFormatting.GRAY)); + component.add(Component.translatable("tooltip.beautify.candelabra.3") + .withStyle(ChatFormatting.GRAY)); + } + super.appendHoverText(stack, tooltipContext, component, flag); + } +} diff --git a/src/main/java/io/github/suel_ki/beautify/common/block/LampCandleabra.java b/src/main/java/io/github/suel_ki/beautify/common/block/LampCandleabra.java deleted file mode 100644 index df65b811..00000000 --- a/src/main/java/io/github/suel_ki/beautify/common/block/LampCandleabra.java +++ /dev/null @@ -1,199 +0,0 @@ -package io.github.suel_ki.beautify.common.block; - -import java.util.List; - -import net.fabricmc.api.EnvType; -import net.fabricmc.api.Environment; -import net.minecraft.ChatFormatting; -import net.minecraft.client.gui.screens.Screen; -import net.minecraft.core.BlockPos; -import net.minecraft.core.Direction; -import net.minecraft.core.particles.ParticleOptions; -import net.minecraft.core.particles.ParticleTypes; -import net.minecraft.network.chat.Component; -import net.minecraft.sounds.SoundEvents; -import net.minecraft.sounds.SoundSource; -import net.minecraft.util.RandomSource; -import net.minecraft.world.InteractionHand; -import net.minecraft.world.InteractionResult; -import net.minecraft.world.entity.player.Player; -import net.minecraft.world.entity.projectile.Projectile; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.item.Items; -import net.minecraft.world.item.TooltipFlag; -import net.minecraft.world.item.context.BlockPlaceContext; -import net.minecraft.world.level.BlockGetter; -import net.minecraft.world.level.Level; -import net.minecraft.world.level.LevelAccessor; -import net.minecraft.world.level.block.Block; -import net.minecraft.world.level.block.LanternBlock; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.block.state.StateDefinition; -import net.minecraft.world.level.block.state.properties.BlockStateProperties; -import net.minecraft.world.level.block.state.properties.BooleanProperty; -import net.minecraft.world.level.block.state.properties.DirectionProperty; -import net.minecraft.world.level.gameevent.GameEvent; -import net.minecraft.world.level.material.FluidState; -import net.minecraft.world.level.material.Fluids; -import net.minecraft.world.phys.BlockHitResult; -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; - -public class LampCandleabra extends LanternBlock { - public static final BooleanProperty ON = BooleanProperty.create("on"); - public static final DirectionProperty FACING = BlockStateProperties.HORIZONTAL_FACING; - - private static final VoxelShape SHAPE_HANGING = Shapes.join(Block.box(0, 2, 6.5, 16, 16, 9.5), Block.box(6.5, 2, 0, 9.5, 16, 16), BooleanOp.OR); - private static final VoxelShape SHAPE_STANDING = Block.box(4, 0, 4, 12, 13, 12); - - public LampCandleabra(Properties properties) { - super(properties); - this.registerDefaultState(this.defaultBlockState().setValue(ON, false).setValue(FACING, Direction.NORTH)); - } - - public boolean isOn(BlockState state) { - return state.getValue(ON); - } - - private static void setOn(LevelAccessor level, BlockState state, BlockPos pos, boolean on) { - level.setBlock(pos, state.setValue(ON, on), 11); - level.gameEvent(null, GameEvent.BLOCK_CHANGE, pos); - if (on) { - level.playSound(null, pos, SoundEvents.FLINTANDSTEEL_USE, SoundSource.BLOCKS, 1.0F, 1.0F); - } else { - level.playSound(null, pos, SoundEvents.CANDLE_EXTINGUISH, SoundSource.BLOCKS, 1.0F, 1.0F); - } - } - - private static void extinguish(BlockState state, LevelAccessor level, BlockPos pos) { - setOn(level, state, pos, false); - addParticle(ParticleTypes.SMOKE, state, level, pos); - } - - private static void addParticle(ParticleOptions particle, BlockState state, LevelAccessor level, BlockPos pos) { - double d0 = (double) pos.getX() + 0.5D; - double d1 = (double) pos.getY() + 1D; - double d2 = (double) pos.getZ() + 0.5D; - if (state.getValue(HANGING)) { - level.addParticle(particle, d0 + 0.4, d1 - 0.15, d2, 0.0D, 0.0D, 0.0D); - level.addParticle(particle, d0 - 0.4, d1 - 0.15, d2, 0.0D, 0.0D, 0.0D); - level.addParticle(particle, d0, d1 - 0.15, d2 + 0.4, 0.0D, 0.0D, 0.0D); - level.addParticle(particle, d0, d1 - 0.15, d2 - 0.4, 0.0D, 0.0D, 0.0D); - } else { - if (state.getValue(FACING) == Direction.EAST || state.getValue(FACING) == Direction.WEST) { - level.addParticle(particle, d0, d1, d2, 0.0D, 0.0D, 0.0D); - level.addParticle(particle, d0, d1 + 0.05, d2 + 0.35, 0.0D, 0.0D, 0.0D); - level.addParticle(particle, d0, d1 + 0.05, d2 - 0.35, 0.0D, 0.0D, 0.0D); - } else { - level.addParticle(particle, d0, d1, d2, 0.0D, 0.0D, 0.0D); - level.addParticle(particle, d0 + 0.35, d1 + 0.05, d2, 0.0D, 0.0D, 0.0D); - level.addParticle(particle, d0 - 0.35, d1 + 0.05, d2, 0.0D, 0.0D, 0.0D); - } - } - } - - @Override - public BlockState getStateForPlacement(BlockPlaceContext context) { - FluidState fluidstate = context.getLevel().getFluidState(context.getClickedPos()); - - for (Direction direction : context.getNearestLookingDirections()) { - if (direction.getAxis() == Direction.Axis.Y) { - BlockState blockstate = this.defaultBlockState().setValue(HANGING, - direction == Direction.UP); - if (blockstate.canSurvive(context.getLevel(), context.getClickedPos())) { - return blockstate.setValue(WATERLOGGED, fluidstate.getType() == Fluids.WATER) - .setValue(FACING, context.getHorizontalDirection().getOpposite()) - .setValue(ON, false); - } - } - } - return null; - } - - @Override - public VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, - CollisionContext context) { - if (state.getValue(HANGING)) { - return SHAPE_HANGING; - } - return SHAPE_STANDING; - } - - @Override - public void onProjectileHit(Level level, BlockState state, BlockHitResult hitResult, Projectile projectile) { - if (!level.isClientSide && projectile.isOnFire() && !isOn(state) && !state.getValue(WATERLOGGED)) { - setOn(level, state, hitResult.getBlockPos(), true); - } - } - - @Override - public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, - BlockHitResult result) { - if (!level.isClientSide() && hand == InteractionHand.MAIN_HAND) { - // Ignite/Extinguish - if (state.getValue(WATERLOGGED)) { - return InteractionResult.PASS; - } - if (this.isOn(state) && !player.isShiftKeyDown() && player.getItemInHand(hand).isEmpty()) { - extinguish(state, level, pos); - return InteractionResult.SUCCESS; - } else if (!this.isOn(state) && player.getItemInHand(hand).is(Items.FLINT_AND_STEEL)) { - setOn(level, state, pos, true); - player.getItemInHand(hand).hurtAndBreak(1, player, (playerx) -> { - playerx.broadcastBreakEvent(hand); - }); - return InteractionResult.SUCCESS; - } - } - return InteractionResult.SUCCESS; - } - - @Environment(EnvType.CLIENT) - @Override - public void animateTick(BlockState state, Level level, BlockPos pos, RandomSource rand) { - if (isOn(state)) { - addParticle(ParticleTypes.SMALL_FLAME, state, level, pos); - } - } - - @Override - protected void createBlockStateDefinition(StateDefinition.Builder builder) { - super.createBlockStateDefinition(builder); - builder.add(FACING, ON); - } - - @Override - public boolean placeLiquid(LevelAccessor level, BlockPos pos, BlockState state, FluidState fluidState) { - if (!(Boolean)state.getValue(WATERLOGGED) && fluidState.getType() == Fluids.WATER) { - BlockState state2 = state.setValue(WATERLOGGED, true); - if (isOn(state)) { - extinguish(state2, level, pos); - } else { - level.setBlock(pos, state2, 3); - } - level.scheduleTick(pos, fluidState.getType(), fluidState.getType().getTickDelay(level)); - return true; - } else { - return false; - } - } - - @Override - public void appendHoverText(ItemStack stack, BlockGetter level, List component, TooltipFlag flag) { - if (!Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); - } - - if (Screen.hasShiftDown()) { - component.add(Component.translatable("tooltip.beautify.candelabra.1") - .withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.candelabra.2") - .withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.candelabra.3") - .withStyle(ChatFormatting.GRAY)); - } - super.appendHoverText(stack, level, component, flag); - } -} diff --git a/src/main/java/io/github/suel_ki/beautify/common/block/LampJar.java b/src/main/java/io/github/suel_ki/beautify/common/block/LampJar.java index af0c45f9..f9a76c88 100644 --- a/src/main/java/io/github/suel_ki/beautify/common/block/LampJar.java +++ b/src/main/java/io/github/suel_ki/beautify/common/block/LampJar.java @@ -13,12 +13,12 @@ import net.minecraft.sounds.SoundSource; import net.minecraft.util.RandomSource; import net.minecraft.world.InteractionHand; -import net.minecraft.world.InteractionResult; +import net.minecraft.world.ItemInteractionResult; import net.minecraft.world.entity.player.Player; +import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.Items; 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.LanternBlock; @@ -38,9 +38,9 @@ public LampJar(Properties p_153465_) { // Fill @Override - public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, - BlockHitResult result) { - if (!level.isClientSide() && hand == InteractionHand.MAIN_HAND) { + public ItemInteractionResult useItemOn(ItemStack stack, BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, + BlockHitResult result) { + if (!level.isClientSide()) { ItemStack playerStack = player.getItemInHand(hand); @@ -53,7 +53,7 @@ public InteractionResult use(BlockState state, Level level, BlockPos pos, Player level.setBlock(pos, state.setValue(FILL_LEVEL, 0), 3); level.playSound(null, pos, SoundEvents.AMETHYST_CLUSTER_BREAK, SoundSource.BLOCKS, 0.5F, 0.5f); - return InteractionResult.SUCCESS; + return ItemInteractionResult.SUCCESS; } // increasing @@ -61,10 +61,10 @@ public InteractionResult use(BlockState state, Level level, BlockPos pos, Player playerStack.shrink(1); level.setBlock(pos, state.setValue(FILL_LEVEL, currentLevel + increase), 3); level.playSound(null, pos, SoundEvents.AMETHYST_BLOCK_HIT, SoundSource.BLOCKS, 0.5F, 0.5f); - return InteractionResult.SUCCESS; + return ItemInteractionResult.SUCCESS; } } - return InteractionResult.SUCCESS; + return ItemInteractionResult.SUCCESS; } @Override @@ -103,20 +103,6 @@ public void animateTick(BlockState state, Level level, BlockPos pos, RandomSourc level.addParticle(ParticleInit.GLOWESSENCE_PARTICLES, posX, posY, posZ, randomDir(rand), 0.01, randomDir(rand)); } - /*if (state.getValue(FILL_LEVEL) >= 5 && state.getValue(FILL_LEVEL) < 10) { - if (rand.nextInt(particleProbability) == 0) { - level.addParticle(ParticleTypes.END_ROD, posX, posY, posZ, randomDir(rand), 0.01, randomDir(rand)); - } - } else if (state.getValue(FILL_LEVEL) >= 10 && state.getValue(FILL_LEVEL) < 15) { - if (rand.nextInt(particleProbability) == 0) { - level.addParticle(ParticleTypes.END_ROD, posX, posY, posZ, randomDir(rand), 0.01, randomDir(rand)); - } - } else if (state.getValue(FILL_LEVEL) == 15) { - posX = (pos.getX() + 0.35) + rand.nextDouble() / 3.5; - posY = (pos.getY() + 0.1) + rand.nextDouble() / 3.5; - posZ = (pos.getZ() + 0.35) + rand.nextDouble() / 3.5; - level.addParticle(ParticleTypes.END_ROD, posX, posY, posZ, randomDir(rand), 0.01, randomDir(rand)); - }*/ } private static double randomDir(RandomSource rand) { @@ -124,7 +110,7 @@ private static double randomDir(RandomSource rand) { } @Override - public void appendHoverText(ItemStack stack, BlockGetter level, List component, TooltipFlag flag) { + public void appendHoverText(ItemStack stack, Item.TooltipContext tooltipContext, List component, TooltipFlag flag) { if (!Screen.hasShiftDown()) { component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); } @@ -134,6 +120,6 @@ public void appendHoverText(ItemStack stack, BlockGetter level, List component.add(Component.translatable("tooltip.beautify.lamp_jar.2").withStyle(ChatFormatting.GRAY)); component.add(Component.translatable("tooltip.beautify.lamp_jar.3").withStyle(ChatFormatting.GRAY)); } - super.appendHoverText(stack, level, component, flag); + super.appendHoverText(stack, tooltipContext, component, flag); } } diff --git a/src/main/java/io/github/suel_ki/beautify/common/block/LampLightBulb.java b/src/main/java/io/github/suel_ki/beautify/common/block/LampLightBulb.java index 56644a63..49911712 100644 --- a/src/main/java/io/github/suel_ki/beautify/common/block/LampLightBulb.java +++ b/src/main/java/io/github/suel_ki/beautify/common/block/LampLightBulb.java @@ -12,9 +12,9 @@ import net.minecraft.sounds.SoundEvents; import net.minecraft.sounds.SoundSource; import net.minecraft.util.RandomSource; -import net.minecraft.world.InteractionHand; import net.minecraft.world.InteractionResult; import net.minecraft.world.entity.player.Player; +import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.TooltipFlag; import net.minecraft.world.level.BlockGetter; @@ -40,21 +40,17 @@ public LampLightBulb(Properties properties) { } @Override - public VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, - CollisionContext context) { - if (state.getValue(HANGING)) { - return SHAPE_HANGING; - } - return SHAPE_STANDING; + public VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, CollisionContext context) { + return state.getValue(HANGING) ? SHAPE_HANGING : SHAPE_STANDING; } @Override - public InteractionResult use(BlockState state, Level pLevel, BlockPos pos, Player player, InteractionHand hand, - BlockHitResult result) { - if (!pLevel.isClientSide() && hand == InteractionHand.MAIN_HAND && player.getItemInHand(hand).isEmpty()) { - pLevel.setBlock(pos, state.setValue(ON, !state.getValue(ON)), 3); + public InteractionResult useWithoutItem(BlockState state, Level level, BlockPos pos, Player player, + BlockHitResult result) { + if (!level.isClientSide()) { + level.setBlock(pos, state.setValue(ON, !state.getValue(ON)), 3); float f = state.getValue(ON) ? 0.5F : 0.6F; - pLevel.playSound(null, pos, SoundEvents.LEVER_CLICK, SoundSource.BLOCKS, 0.25F, f); + level.playSound(null, pos, SoundEvents.LEVER_CLICK, SoundSource.BLOCKS, 0.25F, f); } return InteractionResult.SUCCESS; @@ -83,7 +79,7 @@ protected void createBlockStateDefinition(StateDefinition.Builder component, TooltipFlag flag) { + public void appendHoverText(ItemStack stack, Item.TooltipContext tooltipContext, List component, TooltipFlag flag) { if (!Screen.hasShiftDown()) { component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); } @@ -94,6 +90,6 @@ public void appendHoverText(ItemStack stack, BlockGetter level, List component.add(Component.translatable("tooltip.beautify.lamp.2") .withStyle(ChatFormatting.GRAY)); } - super.appendHoverText(stack, level, component, flag); + super.appendHoverText(stack, tooltipContext, component, flag); } } diff --git a/src/main/java/io/github/suel_ki/beautify/common/block/PictureFrame.java b/src/main/java/io/github/suel_ki/beautify/common/block/PictureFrame.java index f664854a..9831afe2 100644 --- a/src/main/java/io/github/suel_ki/beautify/common/block/PictureFrame.java +++ b/src/main/java/io/github/suel_ki/beautify/common/block/PictureFrame.java @@ -11,9 +11,9 @@ import net.minecraft.network.chat.Component; import net.minecraft.sounds.SoundEvents; import net.minecraft.sounds.SoundSource; -import net.minecraft.world.InteractionHand; import net.minecraft.world.InteractionResult; import net.minecraft.world.entity.player.Player; +import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.TooltipFlag; import net.minecraft.world.item.context.BlockPlaceContext; @@ -30,8 +30,8 @@ import net.minecraft.world.phys.shapes.VoxelShape; public class PictureFrame extends HorizontalDirectionalBlock { - private static final int modelcount = 13; // number of models the frame has - public static final IntegerProperty FRAME_MOTIVE = IntegerProperty.create("frame_motive", 0, modelcount - 1); + private static final int MODELCOUNT = 13; // number of models the frame has + public static final IntegerProperty FRAME_MOTIVE = IntegerProperty.create("frame_motive", 0, MODELCOUNT - 1); protected static final VoxelShape SHAPE = Block.box(5, 0, 5, 11, 8, 11); public static final MapCodec CODEC = simpleCodec(PictureFrame::new); @@ -48,13 +48,12 @@ protected MapCodec codec() { // changing the model of the picture frame by shift-rightclicking @Override - public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, - BlockHitResult result) { - if (!level.isClientSide() && hand == InteractionHand.MAIN_HAND && player.getItemInHand(hand).isEmpty() - && player.isShiftKeyDown()) { + public InteractionResult useWithoutItem(BlockState state, Level level, BlockPos pos, Player player, + BlockHitResult result) { + if (!level.isClientSide() && player.isShiftKeyDown()) { int currentModel = state.getValue(FRAME_MOTIVE); // current index // reset if it surpasses the number of possible models - if (currentModel + 1 > modelcount - 1) { + if (currentModel + 1 > MODELCOUNT - 1) { level.setBlock(pos, state.setValue(FRAME_MOTIVE, 0), 3); } else { // increases index level.setBlock(pos, state.setValue(FRAME_MOTIVE, currentModel + 1), 3); @@ -78,10 +77,8 @@ public VoxelShape getOcclusionShape(BlockState state, BlockGetter level, BlockPo @Override public BlockState getStateForPlacement(BlockPlaceContext context) { - final int min = 0; - final int max = modelcount; Random rand = new Random(); - int randomNum = rand.nextInt((max - min)); + int randomNum = rand.nextInt((MODELCOUNT)); return this.defaultBlockState().setValue(FACING, context.getHorizontalDirection().getOpposite()) .setValue(FRAME_MOTIVE, randomNum); @@ -95,7 +92,7 @@ protected void createBlockStateDefinition(StateDefinition.Builder component, TooltipFlag flag) { + public void appendHoverText(ItemStack stack, Item.TooltipContext tooltipContext, List component, TooltipFlag flag) { if (!Screen.hasShiftDown()) { component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); } @@ -106,6 +103,6 @@ public void appendHoverText(ItemStack stack, BlockGetter level, List component.add(Component.translatable("tooltip.beautify.picture_frame.2") .withStyle(ChatFormatting.GRAY)); } - super.appendHoverText(stack, level, component, flag); + super.appendHoverText(stack, tooltipContext, component, flag); } } diff --git a/src/main/java/io/github/suel_ki/beautify/common/block/Rope.java b/src/main/java/io/github/suel_ki/beautify/common/block/Rope.java index 91233041..83853460 100644 --- a/src/main/java/io/github/suel_ki/beautify/common/block/Rope.java +++ b/src/main/java/io/github/suel_ki/beautify/common/block/Rope.java @@ -6,9 +6,9 @@ import net.minecraft.client.gui.screens.Screen; import net.minecraft.core.Direction; import net.minecraft.network.chat.Component; +import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.TooltipFlag; -import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.block.ChainBlock; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.material.PushReaction; @@ -25,7 +25,7 @@ public PushReaction getPistonPushReaction(BlockState blockState) { } @Override - public void appendHoverText(ItemStack stack, BlockGetter level, List component, TooltipFlag flag) { + public void appendHoverText(ItemStack stack, Item.TooltipContext tooltipContext, List component, TooltipFlag flag) { if (!Screen.hasShiftDown()) { component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); } @@ -34,6 +34,6 @@ public void appendHoverText(ItemStack stack, BlockGetter level, List component.add(Component.translatable("tooltip.beautify.rope.1").withStyle(ChatFormatting.GRAY)); component.add(Component.translatable("tooltip.beautify.rope.2").withStyle(ChatFormatting.GRAY)); } - super.appendHoverText(stack, level, component, flag); + super.appendHoverText(stack, tooltipContext, component, flag); } } diff --git a/src/main/java/io/github/suel_ki/beautify/common/block/Trellis.java b/src/main/java/io/github/suel_ki/beautify/common/block/Trellis.java index f7d833f0..db800f60 100644 --- a/src/main/java/io/github/suel_ki/beautify/common/block/Trellis.java +++ b/src/main/java/io/github/suel_ki/beautify/common/block/Trellis.java @@ -2,7 +2,9 @@ import java.util.Arrays; import java.util.List; +import java.util.Map; +import com.google.common.collect.ImmutableMap; import com.mojang.serialization.MapCodec; import net.minecraft.ChatFormatting; import net.minecraft.client.gui.screens.Screen; @@ -13,7 +15,7 @@ import net.minecraft.sounds.SoundSource; import net.minecraft.stats.Stats; import net.minecraft.world.InteractionHand; -import net.minecraft.world.InteractionResult; +import net.minecraft.world.ItemInteractionResult; import net.minecraft.world.entity.player.Player; import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; @@ -34,18 +36,20 @@ import net.minecraft.world.phys.shapes.VoxelShape; public class Trellis extends HorizontalDirectionalBlock { - private static final List validFlowers = Arrays.asList(Items.AIR, Items.ROSE_BUSH, Items.SUNFLOWER, + public static final List VALID_FLOWERS = Arrays.asList(Items.AIR, Items.ROSE_BUSH, Items.SUNFLOWER, Items.PEONY, Items.LILAC, Items.VINE, Items.WEEPING_VINES, Items.TWISTING_VINES, Items.GLOW_LICHEN); // FLOWERS indicates which index of the flowers List below is active - public static final IntegerProperty FLOWERS = IntegerProperty.create("flowers", 0, validFlowers.size() - 1); + public static final IntegerProperty FLOWERS = IntegerProperty.create("flowers", 0, VALID_FLOWERS.size() - 1); public static final BooleanProperty CEILLING = BooleanProperty.create("ceilling"); private static final VoxelShape SHAPE_CEILLING = Block.box(0, 14, 0, 16, 16, 16); - private static final VoxelShape SHAPE_SOUTH = Block.box(0, 0, 0, 16, 16, 2); - private static final VoxelShape SHAPE_NORTH = Block.box(0, 0, 14, 16, 16, 16); - private static final VoxelShape SHAPE_WEST = Block.box(14, 0, 0, 16, 16, 16); - private static final VoxelShape SHAPE_EAST = Block.box(0, 0, 0, 2, 16, 16); + private static final Map SHAPES_FOR_MODEL = ImmutableMap.of( + Direction.NORTH, Block.box(0, 0, 14, 16, 16, 16), + Direction.SOUTH, Block.box(0, 0, 0, 16, 16, 2), + Direction.WEST, Block.box(14, 0, 0, 16, 16, 16), + Direction.EAST, Block.box(0, 0, 0, 2, 16, 16) + ); public static final MapCodec CODEC = simpleCodec(Trellis::new); @@ -60,7 +64,7 @@ protected MapCodec codec() { } public List getValidFlowers() { - return validFlowers; + return VALID_FLOWERS; } @Override @@ -81,22 +85,12 @@ public VoxelShape getShape(BlockState state, BlockGetter level, BlockPos pos, Co return SHAPE_CEILLING; } - return switch (state.getValue(FACING)) { - case SOUTH -> SHAPE_SOUTH; - case EAST -> SHAPE_EAST; - case WEST -> SHAPE_WEST; - default -> SHAPE_NORTH; - }; + return SHAPES_FOR_MODEL.get(state.getValue(FACING)); } - /*@Override - public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { - return true; - }*/ - @Override - public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, - BlockHitResult result) { + public ItemInteractionResult useItemOn(ItemStack stack, BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, + BlockHitResult result) { if (!level.isClientSide() && hand == InteractionHand.MAIN_HAND) { @@ -107,26 +101,26 @@ public InteractionResult use(BlockState state, Level level, BlockPos pos, Player // giving flower and clearing pot if hand empty or same stack if (playerStack.isEmpty()) { - player.setItemInHand(hand, new ItemStack(validFlowers.get(state.getValue(FLOWERS)))); + player.setItemInHand(hand, new ItemStack(VALID_FLOWERS.get(state.getValue(FLOWERS)))); level.setBlock(pos, state.setValue(FLOWERS, 0), 3); level.playSound(null, pos, SoundEvents.AZALEA_LEAVES_BREAK, SoundSource.BLOCKS, 1, 1); - return InteractionResult.SUCCESS; - } else if (playerStack.is(validFlowers.get(state.getValue(FLOWERS))) + return ItemInteractionResult.SUCCESS; + } else if (playerStack.is(VALID_FLOWERS.get(state.getValue(FLOWERS))) && playerStack.getCount() < playerStack.getMaxStackSize()) { playerStack.grow(1); level.setBlock(pos, state.setValue(FLOWERS, 0), 3); level.playSound(null, pos, SoundEvents.AZALEA_LEAVES_BREAK, SoundSource.BLOCKS, 1, 1); - return InteractionResult.SUCCESS; + return ItemInteractionResult.SUCCESS; } // else just return - return InteractionResult.CONSUME; + return ItemInteractionResult.CONSUME; } else { // if there is no flower // checks if the flower in hand matches the available types - for (Item flower : validFlowers) { + for (Item flower : VALID_FLOWERS) { if (playerStack.getItem().equals(flower)) { - level.setBlock(pos, state.setValue(FLOWERS, validFlowers.indexOf(flower)), 3); + level.setBlock(pos, state.setValue(FLOWERS, VALID_FLOWERS.indexOf(flower)), 3); player.awardStat(Stats.POT_FLOWER); if (!flower.equals(Items.AIR)) { level.playSound(null, pos, SoundEvents.AZALEA_PLACE, SoundSource.BLOCKS, 1, 1); @@ -134,15 +128,15 @@ public InteractionResult use(BlockState state, Level level, BlockPos pos, Player if (!player.getAbilities().instabuild) { playerStack.shrink(1); } - return InteractionResult.SUCCESS; + return ItemInteractionResult.SUCCESS; } } // if the flower is not a valid one - return InteractionResult.CONSUME; + return ItemInteractionResult.CONSUME; } } // end of statement - return InteractionResult.CONSUME; + return ItemInteractionResult.CONSUME; } @Override @@ -155,7 +149,7 @@ private boolean isEmpty(BlockState state) { } public Block getContent(BlockState state) { - return Block.byItem(validFlowers.get(state.getValue(FLOWERS))); + return Block.byItem(VALID_FLOWERS.get(state.getValue(FLOWERS))); } @Override @@ -164,7 +158,7 @@ protected void createBlockStateDefinition(StateDefinition.Builder component, TooltipFlag flag) { + public void appendHoverText(ItemStack stack, Item.TooltipContext tooltipContext, List component, TooltipFlag flag) { if (!Screen.hasShiftDown() && !Screen.hasControlDown()) { component.add(Component.translatable("tooltip.beautify.shift").withStyle(ChatFormatting.YELLOW)); component.add(Component.translatable("tooltip.beautify.plantlist").withStyle(ChatFormatting.YELLOW)); @@ -174,13 +168,6 @@ public void appendHoverText(ItemStack stack, BlockGetter level, List component.add(Component.translatable("tooltip.beautify.trellis.1").withStyle(ChatFormatting.GRAY)); component.add(Component.translatable("tooltip.beautify.trellis.2").withStyle(ChatFormatting.GRAY)); } - - if (Screen.hasControlDown()) { - component.add(Component.translatable("tooltip.beautify.trellis.plant_header").withStyle(ChatFormatting.UNDERLINE) - .withStyle(ChatFormatting.BOLD).withStyle(ChatFormatting.GRAY)); - component.add(Component.translatable("tooltip.beautify.trellis.plants") - .withStyle(ChatFormatting.GRAY)); - } - super.appendHoverText(stack, level, component, flag); + super.appendHoverText(stack, tooltipContext, component, flag); } } diff --git a/src/main/java/io/github/suel_ki/beautify/compat/jade/JadePlugin.java b/src/main/java/io/github/suel_ki/beautify/compat/jade/JadePlugin.java index da22d6af..eecaf83f 100644 --- a/src/main/java/io/github/suel_ki/beautify/compat/jade/JadePlugin.java +++ b/src/main/java/io/github/suel_ki/beautify/compat/jade/JadePlugin.java @@ -3,10 +3,10 @@ import io.github.suel_ki.beautify.common.block.HangingPot; import io.github.suel_ki.beautify.common.block.LampJar; import io.github.suel_ki.beautify.common.block.Trellis; -import io.github.suel_ki.beautify.compat.jade.provider.BookStackProvider; -import io.github.suel_ki.beautify.compat.jade.provider.HangingPotProvider; -import io.github.suel_ki.beautify.compat.jade.provider.LampJarProvider; -import io.github.suel_ki.beautify.compat.jade.provider.TrellisProvider; +import io.github.suel_ki.beautify.compat.jade.providers.BookStackProvider; +import io.github.suel_ki.beautify.compat.jade.providers.HangingPotProvider; +import io.github.suel_ki.beautify.compat.jade.providers.LampJarProvider; +import io.github.suel_ki.beautify.compat.jade.providers.TrellisProvider; import io.github.suel_ki.beautify.core.init.BlockInit; import snownee.jade.api.IWailaClientRegistration; import snownee.jade.api.IWailaPlugin; diff --git a/src/main/java/io/github/suel_ki/beautify/compat/jade/provider/BookStackProvider.java b/src/main/java/io/github/suel_ki/beautify/compat/jade/provider/BookStackProvider.java deleted file mode 100644 index e50bcf27..00000000 --- a/src/main/java/io/github/suel_ki/beautify/compat/jade/provider/BookStackProvider.java +++ /dev/null @@ -1,16 +0,0 @@ -package io.github.suel_ki.beautify.compat.jade.provider; - -import net.minecraft.core.BlockPos; -import net.minecraft.world.level.Level; -import net.minecraft.world.level.block.state.BlockState; -import snownee.jade.api.platform.CustomEnchantPower; - -public enum BookStackProvider implements CustomEnchantPower { - - INSTANCE; - - @Override - public float getEnchantPowerBonus(BlockState state, Level level, BlockPos pos) { - return 1; - } -} diff --git a/src/main/java/io/github/suel_ki/beautify/compat/jade/provider/HangingPotProvider.java b/src/main/java/io/github/suel_ki/beautify/compat/jade/provider/HangingPotProvider.java deleted file mode 100644 index 60edd8e2..00000000 --- a/src/main/java/io/github/suel_ki/beautify/compat/jade/provider/HangingPotProvider.java +++ /dev/null @@ -1,43 +0,0 @@ -package io.github.suel_ki.beautify.compat.jade.provider; - -import io.github.suel_ki.beautify.Beautify; -import io.github.suel_ki.beautify.common.block.HangingPot; -import net.minecraft.ChatFormatting; -import net.minecraft.network.chat.Component; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.level.block.state.BlockState; -import snownee.jade.api.BlockAccessor; -import snownee.jade.api.IBlockComponentProvider; -import snownee.jade.api.ITooltip; -import snownee.jade.api.config.IPluginConfig; -import snownee.jade.api.ui.IDisplayHelper; -import snownee.jade.api.ui.IElementHelper; - -public enum HangingPotProvider implements IBlockComponentProvider { - - INSTANCE; - - @Override - public void appendTooltip(ITooltip tooltip, BlockAccessor accessor, IPluginConfig config) { - if (accessor.getBlock() instanceof HangingPot hangingPot) { - BlockState state = accessor.getBlockState(); - // if there is a flower - if (state.getValue(HangingPot.POTFLOWER) != 0) { - ItemStack iconFlower = new ItemStack(hangingPot.getValidFlowers().get(state.getValue(HangingPot.POTFLOWER))); - if (iconFlower.isEmpty()) - return; - tooltip.add(IElementHelper.get().smallItem(iconFlower)); - tooltip.append(IDisplayHelper.get().stripColor(iconFlower.getHoverName())); - } - if (state.getValue(HangingPot.GROWN)) { - tooltip.add(Component.translatable("tooltip.jade.crop_mature").withStyle(ChatFormatting.GREEN)); - } - } - } - - @Override - public ResourceLocation getUid() { - return Beautify.id("hanging_pot.pot_flower"); - } -} diff --git a/src/main/java/io/github/suel_ki/beautify/compat/jade/provider/TrellisProvider.java b/src/main/java/io/github/suel_ki/beautify/compat/jade/provider/TrellisProvider.java deleted file mode 100644 index 8d20c519..00000000 --- a/src/main/java/io/github/suel_ki/beautify/compat/jade/provider/TrellisProvider.java +++ /dev/null @@ -1,37 +0,0 @@ -package io.github.suel_ki.beautify.compat.jade.provider; - -import io.github.suel_ki.beautify.common.block.Trellis; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.level.block.state.BlockState; -import snownee.jade.api.BlockAccessor; -import snownee.jade.api.IBlockComponentProvider; -import snownee.jade.api.ITooltip; -import snownee.jade.api.config.IPluginConfig; -import snownee.jade.api.ui.IDisplayHelper; -import snownee.jade.api.ui.IElementHelper; - -public enum TrellisProvider implements IBlockComponentProvider { - - INSTANCE; - - @Override - public void appendTooltip(ITooltip tooltip, BlockAccessor accessor, IPluginConfig config) { - if (accessor.getBlock() instanceof Trellis trellis) { - BlockState state = accessor.getBlockState(); - // if there is a plant - if (state.getValue(Trellis.FLOWERS) != 0) { - ItemStack iconFlower = new ItemStack(trellis.getValidFlowers().get(state.getValue(Trellis.FLOWERS))); - if (iconFlower.isEmpty()) - return; - tooltip.add(IElementHelper.get().smallItem(iconFlower)); - tooltip.append(IDisplayHelper.get().stripColor(iconFlower.getHoverName())); - } - } - } - - @Override - public ResourceLocation getUid() { - return new ResourceLocation("trellis.pot_plant"); - } -} diff --git a/src/main/java/io/github/suel_ki/beautify/compat/jade/providers/BookStackProvider.java b/src/main/java/io/github/suel_ki/beautify/compat/jade/providers/BookStackProvider.java new file mode 100644 index 00000000..ac11f47d --- /dev/null +++ b/src/main/java/io/github/suel_ki/beautify/compat/jade/providers/BookStackProvider.java @@ -0,0 +1,16 @@ +package io.github.suel_ki.beautify.compat.jade.providers; + +import net.minecraft.core.BlockPos; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.state.BlockState; +import snownee.jade.api.platform.CustomEnchantPower; + +public enum BookStackProvider implements CustomEnchantPower { + + INSTANCE; + + @Override + public float getEnchantPowerBonus(BlockState state, Level level, BlockPos pos) { + return 1; + } +} diff --git a/src/main/java/io/github/suel_ki/beautify/compat/jade/providers/HangingPotProvider.java b/src/main/java/io/github/suel_ki/beautify/compat/jade/providers/HangingPotProvider.java new file mode 100644 index 00000000..b54fdcc4 --- /dev/null +++ b/src/main/java/io/github/suel_ki/beautify/compat/jade/providers/HangingPotProvider.java @@ -0,0 +1,43 @@ +package io.github.suel_ki.beautify.compat.jade.providers; + +import io.github.suel_ki.beautify.Beautify; +import io.github.suel_ki.beautify.common.block.HangingPot; +import net.minecraft.ChatFormatting; +import net.minecraft.network.chat.Component; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.level.block.state.BlockState; +import snownee.jade.api.BlockAccessor; +import snownee.jade.api.IBlockComponentProvider; +import snownee.jade.api.ITooltip; +import snownee.jade.api.config.IPluginConfig; +import snownee.jade.api.ui.IDisplayHelper; +import snownee.jade.api.ui.IElementHelper; + +public enum HangingPotProvider implements IBlockComponentProvider { + + INSTANCE; + + @Override + public void appendTooltip(ITooltip tooltip, BlockAccessor accessor, IPluginConfig config) { + if (accessor.getBlock() instanceof HangingPot hangingPot) { + BlockState state = accessor.getBlockState(); + // if there is a flower + if (state.getValue(HangingPot.POTFLOWER) != 0) { + ItemStack iconFlower = new ItemStack(hangingPot.getValidFlowers().get(state.getValue(HangingPot.POTFLOWER))); + if (iconFlower.isEmpty()) + return; + tooltip.add(IElementHelper.get().smallItem(iconFlower)); + tooltip.append(IDisplayHelper.get().stripColor(iconFlower.getHoverName())); + } + if (state.getValue(HangingPot.GROWN)) { + tooltip.add(Component.translatable("tooltip.jade.crop_mature").withStyle(ChatFormatting.GREEN)); + } + } + } + + @Override + public ResourceLocation getUid() { + return Beautify.id("hanging_pot.pot_flower"); + } +} diff --git a/src/main/java/io/github/suel_ki/beautify/compat/jade/provider/LampJarProvider.java b/src/main/java/io/github/suel_ki/beautify/compat/jade/providers/LampJarProvider.java similarity index 96% rename from src/main/java/io/github/suel_ki/beautify/compat/jade/provider/LampJarProvider.java rename to src/main/java/io/github/suel_ki/beautify/compat/jade/providers/LampJarProvider.java index 75a0ac63..3d6f2708 100644 --- a/src/main/java/io/github/suel_ki/beautify/compat/jade/provider/LampJarProvider.java +++ b/src/main/java/io/github/suel_ki/beautify/compat/jade/providers/LampJarProvider.java @@ -1,4 +1,4 @@ -package io.github.suel_ki.beautify.compat.jade.provider; +package io.github.suel_ki.beautify.compat.jade.providers; import io.github.suel_ki.beautify.Beautify; import io.github.suel_ki.beautify.common.block.LampJar; diff --git a/src/main/java/io/github/suel_ki/beautify/compat/jade/providers/TrellisProvider.java b/src/main/java/io/github/suel_ki/beautify/compat/jade/providers/TrellisProvider.java new file mode 100644 index 00000000..374acfc9 --- /dev/null +++ b/src/main/java/io/github/suel_ki/beautify/compat/jade/providers/TrellisProvider.java @@ -0,0 +1,37 @@ +package io.github.suel_ki.beautify.compat.jade.providers; + +import io.github.suel_ki.beautify.common.block.Trellis; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.level.block.state.BlockState; +import snownee.jade.api.BlockAccessor; +import snownee.jade.api.IBlockComponentProvider; +import snownee.jade.api.ITooltip; +import snownee.jade.api.config.IPluginConfig; +import snownee.jade.api.ui.IDisplayHelper; +import snownee.jade.api.ui.IElementHelper; + +public enum TrellisProvider implements IBlockComponentProvider { + + INSTANCE; + + @Override + public void appendTooltip(ITooltip tooltip, BlockAccessor accessor, IPluginConfig config) { + if (accessor.getBlock() instanceof Trellis trellis) { + BlockState state = accessor.getBlockState(); + // if there is a plant + if (state.getValue(Trellis.FLOWERS) != 0) { + ItemStack iconFlower = new ItemStack(trellis.getValidFlowers().get(state.getValue(Trellis.FLOWERS))); + if (iconFlower.isEmpty()) + return; + tooltip.add(IElementHelper.get().smallItem(iconFlower)); + tooltip.append(IDisplayHelper.get().stripColor(iconFlower.getHoverName())); + } + } + } + + @Override + public ResourceLocation getUid() { + return new ResourceLocation("trellis.pot_plant"); + } +} diff --git a/src/main/java/io/github/suel_ki/beautify/mixin/EnchantingTableBlockMixin.java b/src/main/java/io/github/suel_ki/beautify/mixin/EnchantingTableBlockMixin.java new file mode 100644 index 00000000..0a68e1fc --- /dev/null +++ b/src/main/java/io/github/suel_ki/beautify/mixin/EnchantingTableBlockMixin.java @@ -0,0 +1,22 @@ +package io.github.suel_ki.beautify.mixin; + +import io.github.suel_ki.beautify.core.init.BlockInit; +import net.minecraft.core.BlockPos; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.EnchantingTableBlock; +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(EnchantingTableBlock.class) +public class EnchantingTableBlockMixin { + @Inject(at = @At("HEAD"), method = "isValidBookShelf", cancellable = true) + private static void isValidBookShelf(Level level, BlockPos tablePos, BlockPos blockPos, CallbackInfoReturnable cir) + { + if (level.getBlockState(tablePos.offset(blockPos)).is(BlockInit.BOOKSTACK) + && level.isEmptyBlock(tablePos.offset(blockPos.getX() / 2, blockPos.getY(), blockPos.getZ() / 2))) { + cir.setReturnValue(true); + } + } +} diff --git a/src/main/java/io/github/suel_ki/beautify/mixin/EnchantmentTableBlockMixin.java b/src/main/java/io/github/suel_ki/beautify/mixin/EnchantmentTableBlockMixin.java deleted file mode 100644 index 4ae6c566..00000000 --- a/src/main/java/io/github/suel_ki/beautify/mixin/EnchantmentTableBlockMixin.java +++ /dev/null @@ -1,23 +0,0 @@ -package io.github.suel_ki.beautify.mixin; - -import io.github.suel_ki.beautify.core.init.BlockInit; -import net.minecraft.core.BlockPos; -import net.minecraft.world.level.Level; -import net.minecraft.world.level.block.EnchantmentTableBlock; -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(EnchantmentTableBlock.class) -public class EnchantmentTableBlockMixin { - - @Inject(at = @At("HEAD"), method = "isValidBookShelf", cancellable = true) - private static void isValidBookShelf(Level level, BlockPos tablePos, BlockPos blockPos, CallbackInfoReturnable cir) - { - if (level.getBlockState(tablePos.offset(blockPos)).is(BlockInit.BOOKSTACK) - && level.isEmptyBlock(tablePos.offset(blockPos.getX() / 2, blockPos.getY(), blockPos.getZ() / 2))) { - cir.setReturnValue(true); - } - } -} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candelabra.json b/src/main/resources/assets/beautify/blockstates/lamp_candelabra.json new file mode 100644 index 00000000..c8e4931a --- /dev/null +++ b/src/main/resources/assets/beautify/blockstates/lamp_candelabra.json @@ -0,0 +1,64 @@ +{ + "variants": { + "on=false,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off" + }, + "on=false,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off", + "y": 90 + }, + "on=false,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off", + "y": 180 + }, + "on=false,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off", + "y": 270 + }, + "on=true,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra" + }, + "on=true,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "y": 90 + }, + "on=true,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "y": 180 + }, + "on=true,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "y": 270 + }, + "on=false,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off" + }, + "on=false,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off", + "y": 90 + }, + "on=false,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off", + "y": 180 + }, + "on=false,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off", + "y": 270 + }, + "on=true,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra" + }, + "on=true,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra", + "y": 90 + }, + "on=true,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra", + "y": 180 + }, + "on=true,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candelabra_black.json b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_black.json new file mode 100644 index 00000000..d06405a1 --- /dev/null +++ b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_black.json @@ -0,0 +1,64 @@ +{ + "variants": { + "on=false,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_black" + }, + "on=false,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_black", + "y": 90 + }, + "on=false,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_black", + "y": 180 + }, + "on=false,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_black", + "y": 270 + }, + "on=true,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_black" + }, + "on=true,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_black", + "y": 90 + }, + "on=true,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_black", + "y": 180 + }, + "on=true,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_black", + "y": 270 + }, + "on=false,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_black" + }, + "on=false,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_black", + "y": 90 + }, + "on=false,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_black", + "y": 180 + }, + "on=false,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_black", + "y": 270 + }, + "on=true,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_black" + }, + "on=true,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_black", + "y": 90 + }, + "on=true,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_black", + "y": 180 + }, + "on=true,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_black", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candelabra_blue.json b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_blue.json new file mode 100644 index 00000000..f182e432 --- /dev/null +++ b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_blue.json @@ -0,0 +1,64 @@ +{ + "variants": { + "on=false,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_blue" + }, + "on=false,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_blue", + "y": 90 + }, + "on=false,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_blue", + "y": 180 + }, + "on=false,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_blue", + "y": 270 + }, + "on=true,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_blue" + }, + "on=true,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_blue", + "y": 90 + }, + "on=true,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_blue", + "y": 180 + }, + "on=true,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_blue", + "y": 270 + }, + "on=false,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_blue" + }, + "on=false,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_blue", + "y": 90 + }, + "on=false,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_blue", + "y": 180 + }, + "on=false,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_blue", + "y": 270 + }, + "on=true,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_blue" + }, + "on=true,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_blue", + "y": 90 + }, + "on=true,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_blue", + "y": 180 + }, + "on=true,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_blue", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candelabra_brown.json b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_brown.json new file mode 100644 index 00000000..b7d21f84 --- /dev/null +++ b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_brown.json @@ -0,0 +1,64 @@ +{ + "variants": { + "on=false,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_brown" + }, + "on=false,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_brown", + "y": 90 + }, + "on=false,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_brown", + "y": 180 + }, + "on=false,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_brown", + "y": 270 + }, + "on=true,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_brown" + }, + "on=true,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_brown", + "y": 90 + }, + "on=true,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_brown", + "y": 180 + }, + "on=true,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_brown", + "y": 270 + }, + "on=false,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_brown" + }, + "on=false,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_brown", + "y": 90 + }, + "on=false,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_brown", + "y": 180 + }, + "on=false,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_brown", + "y": 270 + }, + "on=true,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_brown" + }, + "on=true,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_brown", + "y": 90 + }, + "on=true,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_brown", + "y": 180 + }, + "on=true,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_brown", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candelabra_cyan.json b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_cyan.json new file mode 100644 index 00000000..dc91c4ca --- /dev/null +++ b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_cyan.json @@ -0,0 +1,64 @@ +{ + "variants": { + "on=false,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_cyan" + }, + "on=false,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_cyan", + "y": 90 + }, + "on=false,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_cyan", + "y": 180 + }, + "on=false,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_cyan", + "y": 270 + }, + "on=true,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_cyan" + }, + "on=true,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_cyan", + "y": 90 + }, + "on=true,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_cyan", + "y": 180 + }, + "on=true,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_cyan", + "y": 270 + }, + "on=false,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_cyan" + }, + "on=false,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_cyan", + "y": 90 + }, + "on=false,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_cyan", + "y": 180 + }, + "on=false,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_cyan", + "y": 270 + }, + "on=true,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_cyan" + }, + "on=true,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_cyan", + "y": 90 + }, + "on=true,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_cyan", + "y": 180 + }, + "on=true,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_cyan", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candelabra_gray.json b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_gray.json new file mode 100644 index 00000000..bad19f76 --- /dev/null +++ b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_gray.json @@ -0,0 +1,64 @@ +{ + "variants": { + "on=false,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_gray" + }, + "on=false,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_gray", + "y": 90 + }, + "on=false,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_gray", + "y": 180 + }, + "on=false,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_gray", + "y": 270 + }, + "on=true,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_gray" + }, + "on=true,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_gray", + "y": 90 + }, + "on=true,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_gray", + "y": 180 + }, + "on=true,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_gray", + "y": 270 + }, + "on=false,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_gray" + }, + "on=false,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_gray", + "y": 90 + }, + "on=false,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_gray", + "y": 180 + }, + "on=false,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_gray", + "y": 270 + }, + "on=true,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_gray" + }, + "on=true,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_gray", + "y": 90 + }, + "on=true,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_gray", + "y": 180 + }, + "on=true,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_gray", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candelabra_green.json b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_green.json new file mode 100644 index 00000000..f2baa7a2 --- /dev/null +++ b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_green.json @@ -0,0 +1,64 @@ +{ + "variants": { + "on=false,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_green" + }, + "on=false,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_green", + "y": 90 + }, + "on=false,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_green", + "y": 180 + }, + "on=false,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_green", + "y": 270 + }, + "on=true,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_green" + }, + "on=true,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_green", + "y": 90 + }, + "on=true,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_green", + "y": 180 + }, + "on=true,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_green", + "y": 270 + }, + "on=false,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_green" + }, + "on=false,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_green", + "y": 90 + }, + "on=false,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_green", + "y": 180 + }, + "on=false,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_green", + "y": 270 + }, + "on=true,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_green" + }, + "on=true,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_green", + "y": 90 + }, + "on=true,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_green", + "y": 180 + }, + "on=true,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_green", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candelabra_light_blue.json b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_light_blue.json new file mode 100644 index 00000000..a5207afd --- /dev/null +++ b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_light_blue.json @@ -0,0 +1,64 @@ +{ + "variants": { + "on=false,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_light_blue" + }, + "on=false,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_light_blue", + "y": 90 + }, + "on=false,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_light_blue", + "y": 180 + }, + "on=false,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_light_blue", + "y": 270 + }, + "on=true,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_light_blue" + }, + "on=true,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_light_blue", + "y": 90 + }, + "on=true,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_light_blue", + "y": 180 + }, + "on=true,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_light_blue", + "y": 270 + }, + "on=false,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_light_blue" + }, + "on=false,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_light_blue", + "y": 90 + }, + "on=false,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_light_blue", + "y": 180 + }, + "on=false,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_light_blue", + "y": 270 + }, + "on=true,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_light_blue" + }, + "on=true,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_light_blue", + "y": 90 + }, + "on=true,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_light_blue", + "y": 180 + }, + "on=true,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_light_blue", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candelabra_light_gray.json b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_light_gray.json new file mode 100644 index 00000000..5e37e7ff --- /dev/null +++ b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_light_gray.json @@ -0,0 +1,64 @@ +{ + "variants": { + "on=false,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_light_gray" + }, + "on=false,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_light_gray", + "y": 90 + }, + "on=false,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_light_gray", + "y": 180 + }, + "on=false,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_light_gray", + "y": 270 + }, + "on=true,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_light_gray" + }, + "on=true,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_light_gray", + "y": 90 + }, + "on=true,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_light_gray", + "y": 180 + }, + "on=true,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_light_gray", + "y": 270 + }, + "on=false,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_light_gray" + }, + "on=false,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_light_gray", + "y": 90 + }, + "on=false,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_light_gray", + "y": 180 + }, + "on=false,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_light_gray", + "y": 270 + }, + "on=true,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_light_gray" + }, + "on=true,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_light_gray", + "y": 90 + }, + "on=true,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_light_gray", + "y": 180 + }, + "on=true,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_light_gray", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candelabra_lime.json b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_lime.json new file mode 100644 index 00000000..63d18267 --- /dev/null +++ b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_lime.json @@ -0,0 +1,64 @@ +{ + "variants": { + "on=false,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_lime" + }, + "on=false,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_lime", + "y": 90 + }, + "on=false,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_lime", + "y": 180 + }, + "on=false,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_lime", + "y": 270 + }, + "on=true,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_lime" + }, + "on=true,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_lime", + "y": 90 + }, + "on=true,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_lime", + "y": 180 + }, + "on=true,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_lime", + "y": 270 + }, + "on=false,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_lime" + }, + "on=false,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_lime", + "y": 90 + }, + "on=false,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_lime", + "y": 180 + }, + "on=false,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_lime", + "y": 270 + }, + "on=true,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_lime" + }, + "on=true,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_lime", + "y": 90 + }, + "on=true,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_lime", + "y": 180 + }, + "on=true,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_lime", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candelabra_magenta.json b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_magenta.json new file mode 100644 index 00000000..3d5578a7 --- /dev/null +++ b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_magenta.json @@ -0,0 +1,64 @@ +{ + "variants": { + "on=false,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_magenta" + }, + "on=false,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_magenta", + "y": 90 + }, + "on=false,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_magenta", + "y": 180 + }, + "on=false,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_magenta", + "y": 270 + }, + "on=true,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_magenta" + }, + "on=true,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_magenta", + "y": 90 + }, + "on=true,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_magenta", + "y": 180 + }, + "on=true,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_magenta", + "y": 270 + }, + "on=false,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_magenta" + }, + "on=false,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_magenta", + "y": 90 + }, + "on=false,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_magenta", + "y": 180 + }, + "on=false,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_magenta", + "y": 270 + }, + "on=true,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_magenta" + }, + "on=true,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_magenta", + "y": 90 + }, + "on=true,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_magenta", + "y": 180 + }, + "on=true,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_magenta", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candelabra_orange.json b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_orange.json new file mode 100644 index 00000000..6f3fe1b4 --- /dev/null +++ b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_orange.json @@ -0,0 +1,64 @@ +{ + "variants": { + "on=false,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_orange" + }, + "on=false,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_orange", + "y": 90 + }, + "on=false,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_orange", + "y": 180 + }, + "on=false,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_orange", + "y": 270 + }, + "on=true,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_orange" + }, + "on=true,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_orange", + "y": 90 + }, + "on=true,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_orange", + "y": 180 + }, + "on=true,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_orange", + "y": 270 + }, + "on=false,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_orange" + }, + "on=false,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_orange", + "y": 90 + }, + "on=false,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_orange", + "y": 180 + }, + "on=false,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_orange", + "y": 270 + }, + "on=true,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_orange" + }, + "on=true,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_orange", + "y": 90 + }, + "on=true,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_orange", + "y": 180 + }, + "on=true,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_orange", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candelabra_pink.json b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_pink.json new file mode 100644 index 00000000..6b719d4b --- /dev/null +++ b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_pink.json @@ -0,0 +1,64 @@ +{ + "variants": { + "on=false,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_pink" + }, + "on=false,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_pink", + "y": 90 + }, + "on=false,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_pink", + "y": 180 + }, + "on=false,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_pink", + "y": 270 + }, + "on=true,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_pink" + }, + "on=true,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_pink", + "y": 90 + }, + "on=true,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_pink", + "y": 180 + }, + "on=true,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_pink", + "y": 270 + }, + "on=false,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_pink" + }, + "on=false,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_pink", + "y": 90 + }, + "on=false,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_pink", + "y": 180 + }, + "on=false,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_pink", + "y": 270 + }, + "on=true,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_pink" + }, + "on=true,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_pink", + "y": 90 + }, + "on=true,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_pink", + "y": 180 + }, + "on=true,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_pink", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candelabra_purple.json b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_purple.json new file mode 100644 index 00000000..f766d2fa --- /dev/null +++ b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_purple.json @@ -0,0 +1,64 @@ +{ + "variants": { + "on=false,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_purple" + }, + "on=false,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_purple", + "y": 90 + }, + "on=false,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_purple", + "y": 180 + }, + "on=false,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_purple", + "y": 270 + }, + "on=true,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_purple" + }, + "on=true,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_purple", + "y": 90 + }, + "on=true,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_purple", + "y": 180 + }, + "on=true,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_purple", + "y": 270 + }, + "on=false,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_purple" + }, + "on=false,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_purple", + "y": 90 + }, + "on=false,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_purple", + "y": 180 + }, + "on=false,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_purple", + "y": 270 + }, + "on=true,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_purple" + }, + "on=true,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_purple", + "y": 90 + }, + "on=true,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_purple", + "y": 180 + }, + "on=true,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_purple", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candelabra_red.json b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_red.json new file mode 100644 index 00000000..e100b10a --- /dev/null +++ b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_red.json @@ -0,0 +1,64 @@ +{ + "variants": { + "on=false,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_red" + }, + "on=false,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_red", + "y": 90 + }, + "on=false,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_red", + "y": 180 + }, + "on=false,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_red", + "y": 270 + }, + "on=true,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_red" + }, + "on=true,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_red", + "y": 90 + }, + "on=true,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_red", + "y": 180 + }, + "on=true,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_red", + "y": 270 + }, + "on=false,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_red" + }, + "on=false,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_red", + "y": 90 + }, + "on=false,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_red", + "y": 180 + }, + "on=false,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_red", + "y": 270 + }, + "on=true,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_red" + }, + "on=true,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_red", + "y": 90 + }, + "on=true,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_red", + "y": 180 + }, + "on=true,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_red", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candelabra_white.json b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_white.json new file mode 100644 index 00000000..fcd7533e --- /dev/null +++ b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_white.json @@ -0,0 +1,64 @@ +{ + "variants": { + "on=false,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_white" + }, + "on=false,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_white", + "y": 90 + }, + "on=false,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_white", + "y": 180 + }, + "on=false,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_white", + "y": 270 + }, + "on=true,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_white" + }, + "on=true,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_white", + "y": 90 + }, + "on=true,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_white", + "y": 180 + }, + "on=true,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_white", + "y": 270 + }, + "on=false,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_white" + }, + "on=false,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_white", + "y": 90 + }, + "on=false,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_white", + "y": 180 + }, + "on=false,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_white", + "y": 270 + }, + "on=true,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_white" + }, + "on=true,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_white", + "y": 90 + }, + "on=true,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_white", + "y": 180 + }, + "on=true,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_white", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candelabra_yellow.json b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_yellow.json new file mode 100644 index 00000000..067a3acc --- /dev/null +++ b/src/main/resources/assets/beautify/blockstates/lamp_candelabra_yellow.json @@ -0,0 +1,64 @@ +{ + "variants": { + "on=false,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_yellow" + }, + "on=false,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_yellow", + "y": 90 + }, + "on=false,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_yellow", + "y": 180 + }, + "on=false,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_yellow", + "y": 270 + }, + "on=true,facing=north,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_yellow" + }, + "on=true,facing=east,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_yellow", + "y": 90 + }, + "on=true,facing=south,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_yellow", + "y": 180 + }, + "on=true,facing=west,hanging=false": { + "model": "beautify:block/lamps/candelabras/standing_lamp_candelabra_yellow", + "y": 270 + }, + "on=false,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_yellow" + }, + "on=false,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_yellow", + "y": 90 + }, + "on=false,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_yellow", + "y": 180 + }, + "on=false,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_off_yellow", + "y": 270 + }, + "on=true,facing=north,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_yellow" + }, + "on=true,facing=east,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_yellow", + "y": 90 + }, + "on=true,facing=south,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_yellow", + "y": 180 + }, + "on=true,facing=west,hanging=true": { + "model": "beautify:block/lamps/candelabras/lamp_candelabra_yellow", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candleabra.json b/src/main/resources/assets/beautify/blockstates/lamp_candleabra.json deleted file mode 100644 index 8a49a9c0..00000000 --- a/src/main/resources/assets/beautify/blockstates/lamp_candleabra.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra", - "y": 270 - } - } -} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_black.json b/src/main/resources/assets/beautify/blockstates/lamp_candleabra_black.json deleted file mode 100644 index afe07459..00000000 --- a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_black.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_black" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_black", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_black", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_black", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_black" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_black", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_black", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_black", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_black" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_black", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_black", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_black", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_black" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_black", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_black", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_black", - "y": 270 - } - } -} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_blue.json b/src/main/resources/assets/beautify/blockstates/lamp_candleabra_blue.json deleted file mode 100644 index 055c318d..00000000 --- a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_blue.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_blue" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_blue", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_blue", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_blue", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_blue" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_blue", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_blue", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_blue", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_blue" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_blue", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_blue", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_blue", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_blue" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_blue", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_blue", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_blue", - "y": 270 - } - } -} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_brown.json b/src/main/resources/assets/beautify/blockstates/lamp_candleabra_brown.json deleted file mode 100644 index 03408682..00000000 --- a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_brown.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_brown" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_brown", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_brown", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_brown", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_brown" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_brown", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_brown", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_brown", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_brown" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_brown", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_brown", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_brown", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_brown" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_brown", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_brown", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_brown", - "y": 270 - } - } -} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_cyan.json b/src/main/resources/assets/beautify/blockstates/lamp_candleabra_cyan.json deleted file mode 100644 index 98baaeb8..00000000 --- a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_cyan.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_cyan" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_cyan", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_cyan", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_cyan", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_cyan" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_cyan", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_cyan", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_cyan", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_cyan" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_cyan", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_cyan", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_cyan", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_cyan" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_cyan", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_cyan", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_cyan", - "y": 270 - } - } -} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_gray.json b/src/main/resources/assets/beautify/blockstates/lamp_candleabra_gray.json deleted file mode 100644 index 9d8de4cf..00000000 --- a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_gray.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_gray" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_gray", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_gray", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_gray", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_gray" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_gray", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_gray", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_gray", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_gray" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_gray", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_gray", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_gray", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_gray" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_gray", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_gray", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_gray", - "y": 270 - } - } -} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_green.json b/src/main/resources/assets/beautify/blockstates/lamp_candleabra_green.json deleted file mode 100644 index c0d50f54..00000000 --- a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_green.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_green" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_green", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_green", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_green", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_green" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_green", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_green", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_green", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_green" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_green", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_green", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_green", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_green" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_green", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_green", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_green", - "y": 270 - } - } -} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_light_blue.json b/src/main/resources/assets/beautify/blockstates/lamp_candleabra_light_blue.json deleted file mode 100644 index d647a6ed..00000000 --- a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_light_blue.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_blue" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_blue", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_blue", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_blue", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_light_blue" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_light_blue", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_light_blue", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_light_blue", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_light_blue" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_light_blue", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_light_blue", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_light_blue", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_light_blue" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_light_blue", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_light_blue", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_light_blue", - "y": 270 - } - } -} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_light_gray.json b/src/main/resources/assets/beautify/blockstates/lamp_candleabra_light_gray.json deleted file mode 100644 index bd88a976..00000000 --- a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_light_gray.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_gray" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_gray", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_gray", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_gray", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_light_gray" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_light_gray", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_light_gray", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_light_gray", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_light_gray" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_light_gray", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_light_gray", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_light_gray", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_light_gray" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_light_gray", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_light_gray", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_light_gray", - "y": 270 - } - } -} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_lime.json b/src/main/resources/assets/beautify/blockstates/lamp_candleabra_lime.json deleted file mode 100644 index 9a3884be..00000000 --- a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_lime.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_lime" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_lime", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_lime", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_lime", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_lime" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_lime", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_lime", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_lime", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_lime" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_lime", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_lime", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_lime", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_lime" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_lime", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_lime", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_lime", - "y": 270 - } - } -} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_magenta.json b/src/main/resources/assets/beautify/blockstates/lamp_candleabra_magenta.json deleted file mode 100644 index c08503ed..00000000 --- a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_magenta.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_magenta" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_magenta", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_magenta", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_magenta", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_magenta" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_magenta", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_magenta", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_magenta", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_magenta" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_magenta", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_magenta", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_magenta", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_magenta" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_magenta", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_magenta", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_magenta", - "y": 270 - } - } -} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_orange.json b/src/main/resources/assets/beautify/blockstates/lamp_candleabra_orange.json deleted file mode 100644 index 65ad910f..00000000 --- a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_orange.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_orange" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_orange", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_orange", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_orange", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_orange" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_orange", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_orange", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_orange", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_orange" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_orange", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_orange", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_orange", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_orange" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_orange", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_orange", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_orange", - "y": 270 - } - } -} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_pink.json b/src/main/resources/assets/beautify/blockstates/lamp_candleabra_pink.json deleted file mode 100644 index 64ef7999..00000000 --- a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_pink.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_pink" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_pink", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_pink", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_pink", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_pink" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_pink", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_pink", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_pink", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_pink" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_pink", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_pink", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_pink", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_pink" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_pink", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_pink", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_pink", - "y": 270 - } - } -} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_purple.json b/src/main/resources/assets/beautify/blockstates/lamp_candleabra_purple.json deleted file mode 100644 index da370a7a..00000000 --- a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_purple.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_purple" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_purple", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_purple", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_purple", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_purple" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_purple", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_purple", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_purple", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_purple" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_purple", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_purple", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_purple", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_purple" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_purple", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_purple", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_purple", - "y": 270 - } - } -} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_red.json b/src/main/resources/assets/beautify/blockstates/lamp_candleabra_red.json deleted file mode 100644 index ffc3076c..00000000 --- a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_red.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_red" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_red", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_red", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_red", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_red" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_red", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_red", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_red", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_red" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_red", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_red", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_red", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_red" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_red", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_red", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_red", - "y": 270 - } - } -} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_white.json b/src/main/resources/assets/beautify/blockstates/lamp_candleabra_white.json deleted file mode 100644 index f90fe35d..00000000 --- a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_white.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_white" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_white", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_white", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_white", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_white" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_white", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_white", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_white", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_white" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_white", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_white", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_white", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_white" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_white", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_white", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_white", - "y": 270 - } - } -} diff --git a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_yellow.json b/src/main/resources/assets/beautify/blockstates/lamp_candleabra_yellow.json deleted file mode 100644 index 3c0ccc5c..00000000 --- a/src/main/resources/assets/beautify/blockstates/lamp_candleabra_yellow.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "variants": { - "on=false,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_yellow" - }, - "on=false,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_yellow", - "y": 90 - }, - "on=false,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_yellow", - "y": 180 - }, - "on=false,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_yellow", - "y": 270 - }, - "on=true,facing=north,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_yellow" - }, - "on=true,facing=east,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_yellow", - "y": 90 - }, - "on=true,facing=south,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_yellow", - "y": 180 - }, - "on=true,facing=west,hanging=false": { - "model": "beautify:block/lamps/candleabras/standing_lamp_candleabra_yellow", - "y": 270 - }, - "on=false,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_yellow" - }, - "on=false,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_yellow", - "y": 90 - }, - "on=false,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_yellow", - "y": 180 - }, - "on=false,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_off_yellow", - "y": 270 - }, - "on=true,facing=north,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_yellow" - }, - "on=true,facing=east,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_yellow", - "y": 90 - }, - "on=true,facing=south,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_yellow", - "y": 180 - }, - "on=true,facing=west,hanging=true": { - "model": "beautify:block/lamps/candleabras/lamp_candleabra_yellow", - "y": 270 - } - } -} diff --git a/src/main/resources/assets/beautify/lang/en_us.json b/src/main/resources/assets/beautify/lang/en_us.json index 99ea3fc9..8350451a 100644 --- a/src/main/resources/assets/beautify/lang/en_us.json +++ b/src/main/resources/assets/beautify/lang/en_us.json @@ -17,23 +17,23 @@ "block.beautify.lamp_light_bulb": "Light Bulb", "block.beautify.lamp_bamboo": "Bamboo Lamp", "block.beautify.lamp_jar": "Glowstone Essence Lamp", - "block.beautify.lamp_candleabra": "Candelabra", - "block.beautify.lamp_candleabra_light_blue": "Light Blue Candelabra", - "block.beautify.lamp_candleabra_light_gray": "Light Gray Candelabra", - "block.beautify.lamp_candleabra_black": "Black Candelabra", - "block.beautify.lamp_candleabra_blue": "Blue Candelabra", - "block.beautify.lamp_candleabra_brown": "Brown Candelabra", - "block.beautify.lamp_candleabra_cyan": "Cyan Candelabra", - "block.beautify.lamp_candleabra_gray": "Gray Candelabra", - "block.beautify.lamp_candleabra_green": "Green Candelabra", - "block.beautify.lamp_candleabra_lime": "Lime Candelabra", - "block.beautify.lamp_candleabra_magenta": "Magenta Candelabra", - "block.beautify.lamp_candleabra_orange": "Orange Candelabra", - "block.beautify.lamp_candleabra_pink": "Pink Candelabra", - "block.beautify.lamp_candleabra_purple": "Purple Candelabra", - "block.beautify.lamp_candleabra_red": "Red Candelabra", - "block.beautify.lamp_candleabra_white": "White Candelabra", - "block.beautify.lamp_candleabra_yellow": "Yellow Candelabra", + "block.beautify.lamp_candelabra": "Candelabra", + "block.beautify.lamp_candelabra_light_blue": "Light Blue Candelabra", + "block.beautify.lamp_candelabra_light_gray": "Light Gray Candelabra", + "block.beautify.lamp_candelabra_black": "Black Candelabra", + "block.beautify.lamp_candelabra_blue": "Blue Candelabra", + "block.beautify.lamp_candelabra_brown": "Brown Candelabra", + "block.beautify.lamp_candelabra_cyan": "Cyan Candelabra", + "block.beautify.lamp_candelabra_gray": "Gray Candelabra", + "block.beautify.lamp_candelabra_green": "Green Candelabra", + "block.beautify.lamp_candelabra_lime": "Lime Candelabra", + "block.beautify.lamp_candelabra_magenta": "Magenta Candelabra", + "block.beautify.lamp_candelabra_orange": "Orange Candelabra", + "block.beautify.lamp_candelabra_pink": "Pink Candelabra", + "block.beautify.lamp_candelabra_purple": "Purple Candelabra", + "block.beautify.lamp_candelabra_red": "Red Candelabra", + "block.beautify.lamp_candelabra_white": "White Candelabra", + "block.beautify.lamp_candelabra_yellow": "Yellow Candelabra", "block.beautify.oak_blinds": "Oak Blinds", "block.beautify.spruce_blinds": "Spruce Blinds", "block.beautify.birch_blinds": "Birch Blinds", @@ -70,14 +70,13 @@ "tooltip.beautify.shift": "Hold SHIFT for more info.", "tooltip.beautify.plantlist": "Hold CTRL for a list of plants.", + "tooltip.beautify.plantable": "Plantable plants:", "tooltip.beautify.bookstack.1": "Place a random stack of books, sneaking right-click on the block to change the model.", "tooltip.beautify.bookstack.2": "Increase the power of the Enchantment Table like bookshelves.", "tooltip.beautify.botanist_workbench.1": "Workbench for Botanist Villagers, also for decoration.", "tooltip.beautify.hanging_pot.1": "Can be placed hanging on blocks, Ropes or on ground as usual.", "tooltip.beautify.hanging_pot.2": "Right click to pot up plants.", "tooltip.beautify.hanging_pot.3": "Right click with Bone Meal to grow the plant further. Trim with shears to shorten and recieve plant item.", - "tooltip.beautify.hanging_pot.plant_header": "Pottable plants:", - "tooltip.beautify.hanging_pot.plants": "All normal flowers + Rose Bushes, Lilacs, Peonies, Sunflowers, Vines, Weeping Vines, Twisting Vines, Glow Lichen, Glow Berries, Sweet Berries.", "tooltip.beautify.lamp.1": "Can be placed hanging and standing like Lanterns.", "tooltip.beautify.lamp.2": "Right click to turn on/off.", "tooltip.beautify.candelabra.1": "Can be placed hanging and standing like Lanterns.", @@ -94,8 +93,6 @@ "tooltip.beautify.rope.2": "Great with Hanging Pots.", "tooltip.beautify.trellis.1": "Can be placed on wall or ceiling and can be climbed.", "tooltip.beautify.trellis.2": "Right click on plants in your hand to place it in.", - "tooltip.beautify.trellis.plant_header": "Pottable plants:", - "tooltip.beautify.trellis.plants": "Rose Bushes, Sunflowers, Peonies, Lilacs, Vines, Weeping Vines, Twisting Vines, Glow Lichen.", "advancements.beautify.blinds.title": "Blinded by the lights", "advancements.beautify.blinds.description": "Craft blinds to filter some light.", diff --git a/src/main/resources/assets/beautify/lang/es_mx.json b/src/main/resources/assets/beautify/lang/es_mx.json index 936c4f11..68666c5f 100644 --- a/src/main/resources/assets/beautify/lang/es_mx.json +++ b/src/main/resources/assets/beautify/lang/es_mx.json @@ -17,23 +17,23 @@ "block.beautify.lamp_light_bulb": "Foco", "block.beautify.lamp_bamboo": "Lámpara de bambú", "block.beautify.lamp_jar": "Lámpara de tarro", - "block.beautify.lamp_candleabra": "Candelabro", - "block.beautify.lamp_candleabra_light_blue": "Candelabro azul claro", - "block.beautify.lamp_candleabra_light_gray": "Candelabro gris claro", - "block.beautify.lamp_candleabra_black": "Candelabro negro", - "block.beautify.lamp_candleabra_blue": "Candelabro azul", - "block.beautify.lamp_candleabra_brown": "Candelabro marrón", - "block.beautify.lamp_candleabra_cyan": "Candelabro cian", - "block.beautify.lamp_candleabra_gray": "Candelabro gris", - "block.beautify.lamp_candleabra_green": "Candelabro verde", - "block.beautify.lamp_candleabra_lime": "Candelabro lima", - "block.beautify.lamp_candleabra_magenta": "Candelabro magenta", - "block.beautify.lamp_candleabra_orange": "Candelabro naranja", - "block.beautify.lamp_candleabra_pink": "Candelabro rosa", - "block.beautify.lamp_candleabra_purple": "Candelabro morado", - "block.beautify.lamp_candleabra_red": "Candelabro rojo", - "block.beautify.lamp_candleabra_white": "Candelabro blanco", - "block.beautify.lamp_candleabra_yellow": "Candelabro amarillo", + "block.beautify.lamp_candelabra": "Candelabro", + "block.beautify.lamp_candelabra_light_blue": "Candelabro azul claro", + "block.beautify.lamp_candelabra_light_gray": "Candelabro gris claro", + "block.beautify.lamp_candelabra_black": "Candelabro negro", + "block.beautify.lamp_candelabra_blue": "Candelabro azul", + "block.beautify.lamp_candelabra_brown": "Candelabro marrón", + "block.beautify.lamp_candelabra_cyan": "Candelabro cian", + "block.beautify.lamp_candelabra_gray": "Candelabro gris", + "block.beautify.lamp_candelabra_green": "Candelabro verde", + "block.beautify.lamp_candelabra_lime": "Candelabro lima", + "block.beautify.lamp_candelabra_magenta": "Candelabro magenta", + "block.beautify.lamp_candelabra_orange": "Candelabro naranja", + "block.beautify.lamp_candelabra_pink": "Candelabro rosa", + "block.beautify.lamp_candelabra_purple": "Candelabro morado", + "block.beautify.lamp_candelabra_red": "Candelabro rojo", + "block.beautify.lamp_candelabra_white": "Candelabro blanco", + "block.beautify.lamp_candelabra_yellow": "Candelabro amarillo", "block.beautify.oak_blinds": "Persiana de roble", "block.beautify.spruce_blinds": "Persiana de abeto", "block.beautify.birch_blinds": "Persiana de abedul", diff --git a/src/main/resources/assets/beautify/lang/it_it.json b/src/main/resources/assets/beautify/lang/it_it.json index fc525005..c1139c80 100644 --- a/src/main/resources/assets/beautify/lang/it_it.json +++ b/src/main/resources/assets/beautify/lang/it_it.json @@ -17,23 +17,23 @@ "block.beautify.lamp_light_bulb": "Lampadina", "block.beautify.lamp_bamboo": "Lampada di bambù", "block.beautify.lamp_jar": "Lampada di essenza di luminite", - "block.beautify.lamp_candleabra": "Candelabro", - "block.beautify.lamp_candleabra_light_blue": "Candelabro azzurro", - "block.beautify.lamp_candleabra_light_gray": "Candelabro grigio chiaro", - "block.beautify.lamp_candleabra_black": "Candelabro nero", - "block.beautify.lamp_candleabra_blue": "Candelabro blu", - "block.beautify.lamp_candleabra_brown": "Candelabro marrone", - "block.beautify.lamp_candleabra_cyan": "Candelabro ciano", - "block.beautify.lamp_candleabra_gray": "Candelabro grigio", - "block.beautify.lamp_candleabra_green": "Candelabro verde", - "block.beautify.lamp_candleabra_lime": "Candelabro lime", - "block.beautify.lamp_candleabra_magenta": "Candelabro magenta", - "block.beautify.lamp_candleabra_orange": "Candelabro arancione", - "block.beautify.lamp_candleabra_pink": "Candelabro rosa", - "block.beautify.lamp_candleabra_purple": "Candelabro viola", - "block.beautify.lamp_candleabra_red": "Candelabro rosso", - "block.beautify.lamp_candleabra_white": "Candelabro bianco", - "block.beautify.lamp_candleabra_yellow": "Candelabro giallo", + "block.beautify.lamp_candelabra": "Candelabro", + "block.beautify.lamp_candelabra_light_blue": "Candelabro azzurro", + "block.beautify.lamp_candelabra_light_gray": "Candelabro grigio chiaro", + "block.beautify.lamp_candelabra_black": "Candelabro nero", + "block.beautify.lamp_candelabra_blue": "Candelabro blu", + "block.beautify.lamp_candelabra_brown": "Candelabro marrone", + "block.beautify.lamp_candelabra_cyan": "Candelabro ciano", + "block.beautify.lamp_candelabra_gray": "Candelabro grigio", + "block.beautify.lamp_candelabra_green": "Candelabro verde", + "block.beautify.lamp_candelabra_lime": "Candelabro lime", + "block.beautify.lamp_candelabra_magenta": "Candelabro magenta", + "block.beautify.lamp_candelabra_orange": "Candelabro arancione", + "block.beautify.lamp_candelabra_pink": "Candelabro rosa", + "block.beautify.lamp_candelabra_purple": "Candelabro viola", + "block.beautify.lamp_candelabra_red": "Candelabro rosso", + "block.beautify.lamp_candelabra_white": "Candelabro bianco", + "block.beautify.lamp_candelabra_yellow": "Candelabro giallo", "block.beautify.oak_blinds": "Veneziana di quercia", "block.beautify.spruce_blinds": "Veneziana di abete", "block.beautify.birch_blinds": "Veneziana di betulla", diff --git a/src/main/resources/assets/beautify/lang/zh_cn.json b/src/main/resources/assets/beautify/lang/zh_cn.json index 205d5270..f1d4a1bf 100644 --- a/src/main/resources/assets/beautify/lang/zh_cn.json +++ b/src/main/resources/assets/beautify/lang/zh_cn.json @@ -17,23 +17,23 @@ "block.beautify.lamp_light_bulb": "灯泡", "block.beautify.lamp_bamboo": "竹灯", "block.beautify.lamp_jar": "荧石灯", - "block.beautify.lamp_candleabra": "烛台", - "block.beautify.lamp_candleabra_light_blue": "淡蓝色蜡烛烛台", - "block.beautify.lamp_candleabra_light_gray": "淡灰色蜡烛烛台", - "block.beautify.lamp_candleabra_black": "黑色蜡烛烛台", - "block.beautify.lamp_candleabra_blue": "蓝色蜡烛烛台", - "block.beautify.lamp_candleabra_brown": "棕色蜡烛烛台", - "block.beautify.lamp_candleabra_cyan": "青色蜡烛烛台", - "block.beautify.lamp_candleabra_gray": "灰色蜡烛烛台", - "block.beautify.lamp_candleabra_green": "绿色蜡烛烛台", - "block.beautify.lamp_candleabra_lime": "黄绿色蜡烛烛台", - "block.beautify.lamp_candleabra_magenta": "品红色蜡烛烛台", - "block.beautify.lamp_candleabra_orange": "橙色蜡烛烛台", - "block.beautify.lamp_candleabra_pink": "粉红色蜡烛烛台", - "block.beautify.lamp_candleabra_purple": "紫色蜡烛烛台", - "block.beautify.lamp_candleabra_red": "红色蜡烛烛台", - "block.beautify.lamp_candleabra_white": "白色蜡烛烛台", - "block.beautify.lamp_candleabra_yellow": "黄色蜡烛烛台", + "block.beautify.lamp_candelabra": "烛台", + "block.beautify.lamp_candelabra_light_blue": "淡蓝色蜡烛烛台", + "block.beautify.lamp_candelabra_light_gray": "淡灰色蜡烛烛台", + "block.beautify.lamp_candelabra_black": "黑色蜡烛烛台", + "block.beautify.lamp_candelabra_blue": "蓝色蜡烛烛台", + "block.beautify.lamp_candelabra_brown": "棕色蜡烛烛台", + "block.beautify.lamp_candelabra_cyan": "青色蜡烛烛台", + "block.beautify.lamp_candelabra_gray": "灰色蜡烛烛台", + "block.beautify.lamp_candelabra_green": "绿色蜡烛烛台", + "block.beautify.lamp_candelabra_lime": "黄绿色蜡烛烛台", + "block.beautify.lamp_candelabra_magenta": "品红色蜡烛烛台", + "block.beautify.lamp_candelabra_orange": "橙色蜡烛烛台", + "block.beautify.lamp_candelabra_pink": "粉红色蜡烛烛台", + "block.beautify.lamp_candelabra_purple": "紫色蜡烛烛台", + "block.beautify.lamp_candelabra_red": "红色蜡烛烛台", + "block.beautify.lamp_candelabra_white": "白色蜡烛烛台", + "block.beautify.lamp_candelabra_yellow": "黄色蜡烛烛台", "block.beautify.oak_blinds": "橡木百叶窗", "block.beautify.spruce_blinds": "云杉木百叶窗", "block.beautify.birch_blinds": "白桦木百叶窗", @@ -70,14 +70,13 @@ "tooltip.beautify.shift": "按住SHIFT键获取更多信息。", "tooltip.beautify.plantlist": "按住CTRL键查看植物列表。", + "tooltip.beautify.plantable": "可栽种植物:", "tooltip.beautify.bookstack.1": "放置时随机书堆,潜行右击书堆以更改模型。", "tooltip.beautify.bookstack.2": "可以像书架一样为附魔台提升附魔等级。", "tooltip.beautify.botanist_workbench.1": "植物学家村民的工作台,也可用于装饰。", "tooltip.beautify.hanging_pot.1": "可悬挂在方块上或者放在地面上。", "tooltip.beautify.hanging_pot.2": "右击可将植物种上悬挂花盆。", "tooltip.beautify.hanging_pot.3": "对植物手持骨粉右击,可使植物进一步生长,用剪刀修剪以缩短和收获植物。", - "tooltip.beautify.hanging_pot.plant_header": "可盆栽植物:", - "tooltip.beautify.hanging_pot.plants": "对所有小型花,玫瑰丛,丁香,牡丹,向日葵,藤蔓,垂泪藤,缠怨藤,发光地衣,发光浆果,甜浆果有效。", "tooltip.beautify.lamp.1": "可以像灯笼一样悬挂和放置。", "tooltip.beautify.lamp.2": "空手右击以开关。", "tooltip.beautify.candelabra.1": "可以像灯笼一样悬挂和放置。", @@ -94,8 +93,6 @@ "tooltip.beautify.rope.2": "和悬挂花盆很搭。", "tooltip.beautify.trellis.1": "可以放置在墙上或天花板上,可攀爬。", "tooltip.beautify.trellis.2": "手持植物右击可将其放入其中", - "tooltip.beautify.trellis.plant_header": "可放置植物:", - "tooltip.beautify.trellis.plants": "玫瑰丛,向日葵,牡丹,丁香,藤蔓,垂泪藤,缠怨藤,发光地衣。", "advancements.beautify.blinds.title": "被灯光蒙蔽了双眼", "advancements.beautify.blinds.description": "制作百叶窗来过滤一些光线。", diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra.json similarity index 100% rename from mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra.json rename to src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra.json diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_black.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_black.json new file mode 100644 index 00000000..59fcdbc9 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_black.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/black_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_blue.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_blue.json new file mode 100644 index 00000000..078d42f7 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_blue.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/blue_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_brown.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_brown.json new file mode 100644 index 00000000..0adc2d0a --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_brown.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/brown_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_cyan.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_cyan.json new file mode 100644 index 00000000..03091e98 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_cyan.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/cyan_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_gray.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_gray.json new file mode 100644 index 00000000..1ee6bbe0 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_gray.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/gray_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_green.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_green.json new file mode 100644 index 00000000..c4f1cc11 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_green.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/green_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_light_blue.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_light_blue.json new file mode 100644 index 00000000..836b2c95 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_light_blue.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/light_blue_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_light_gray.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_light_gray.json new file mode 100644 index 00000000..8b6a852b --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_light_gray.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/light_gray_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_lime.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_lime.json new file mode 100644 index 00000000..33b77cf4 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_lime.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/lime_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_magenta.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_magenta.json new file mode 100644 index 00000000..c9fb29e6 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_magenta.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/magenta_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off.json new file mode 100644 index 00000000..0e5d6431 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_black.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_black.json new file mode 100644 index 00000000..4289cccc --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_black.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/black_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_blue.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_blue.json new file mode 100644 index 00000000..3280efe6 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_blue.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/blue_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_brown.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_brown.json new file mode 100644 index 00000000..56c8d56b --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_brown.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/brown_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_cyan.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_cyan.json new file mode 100644 index 00000000..bff8dacc --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_cyan.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/cyan_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_gray.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_gray.json new file mode 100644 index 00000000..97ffe8b3 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_gray.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/gray_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_green.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_green.json new file mode 100644 index 00000000..43fa9a42 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_green.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/green_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_light_blue.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_light_blue.json new file mode 100644 index 00000000..1a1a5090 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_light_blue.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/light_blue_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_light_gray.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_light_gray.json new file mode 100644 index 00000000..ac58faa1 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_light_gray.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/light_gray_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_lime.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_lime.json new file mode 100644 index 00000000..bde81226 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_lime.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/lime_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_magenta.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_magenta.json new file mode 100644 index 00000000..c0e87e49 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_magenta.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/magenta_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_orange.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_orange.json new file mode 100644 index 00000000..2f2d40b2 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_orange.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/orange_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_pink.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_pink.json new file mode 100644 index 00000000..02dcc19e --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_pink.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/pink_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_purple.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_purple.json new file mode 100644 index 00000000..57b4df62 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_purple.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/purple_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_red.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_red.json new file mode 100644 index 00000000..daa4e40e --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_red.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/red_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_white.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_white.json new file mode 100644 index 00000000..3d555e9e --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_white.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/white_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_yellow.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_yellow.json new file mode 100644 index 00000000..a9fb5668 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_off_yellow.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/yellow_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_orange.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_orange.json new file mode 100644 index 00000000..1966cbcd --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_orange.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/orange_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_pink.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_pink.json new file mode 100644 index 00000000..53cffaf2 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_pink.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/pink_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_purple.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_purple.json new file mode 100644 index 00000000..4e238320 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_purple.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/purple_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_red.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_red.json new file mode 100644 index 00000000..7e834e4c --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_red.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/red_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_white.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_white.json new file mode 100644 index 00000000..5caaa083 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_white.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/white_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_yellow.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_yellow.json new file mode 100644 index 00000000..8b24e523 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/lamp_candelabra_yellow.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/yellow_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra.json similarity index 100% rename from mod/beautify/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra.json rename to src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra.json diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_black.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_black.json new file mode 100644 index 00000000..44352f4a --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_black.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/black_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_blue.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_blue.json new file mode 100644 index 00000000..c9429e5d --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_blue.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/blue_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_brown.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_brown.json new file mode 100644 index 00000000..695ce635 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_brown.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/brown_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_cyan.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_cyan.json new file mode 100644 index 00000000..c3038773 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_cyan.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/cyan_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_gray.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_gray.json new file mode 100644 index 00000000..1fe1ba24 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_gray.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/gray_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_green.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_green.json new file mode 100644 index 00000000..5b4125df --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_green.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/green_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_light_blue.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_light_blue.json new file mode 100644 index 00000000..44c6f820 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_light_blue.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/light_blue_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_light_gray.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_light_gray.json new file mode 100644 index 00000000..b08196e2 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_light_gray.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/light_gray_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_lime.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_lime.json new file mode 100644 index 00000000..f4cb608f --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_lime.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/lime_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_magenta.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_magenta.json new file mode 100644 index 00000000..d36d156d --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_magenta.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/magenta_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off.json new file mode 100644 index 00000000..9cc8ff1d --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_black.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_black.json new file mode 100644 index 00000000..f1faedf4 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_black.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/black_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_blue.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_blue.json new file mode 100644 index 00000000..c2885bae --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_blue.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/blue_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_brown.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_brown.json new file mode 100644 index 00000000..7aa1db7e --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_brown.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/brown_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_cyan.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_cyan.json new file mode 100644 index 00000000..b83094e0 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_cyan.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/cyan_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_gray.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_gray.json new file mode 100644 index 00000000..76f060fe --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_gray.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/gray_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_green.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_green.json new file mode 100644 index 00000000..081363b2 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_green.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/green_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_light_blue.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_light_blue.json new file mode 100644 index 00000000..b20d1784 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_light_blue.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/light_blue_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_light_gray.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_light_gray.json new file mode 100644 index 00000000..a7b76b7c --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_light_gray.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/light_gray_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_lime.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_lime.json new file mode 100644 index 00000000..12973ac6 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_lime.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/lime_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_magenta.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_magenta.json new file mode 100644 index 00000000..443d40a0 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_magenta.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/magenta_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_orange.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_orange.json new file mode 100644 index 00000000..08000f93 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_orange.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/orange_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_pink.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_pink.json new file mode 100644 index 00000000..79864b3a --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_pink.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/pink_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_purple.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_purple.json new file mode 100644 index 00000000..8748a8ba --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_purple.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/purple_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_red.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_red.json new file mode 100644 index 00000000..64c77350 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_red.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/red_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_white.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_white.json new file mode 100644 index 00000000..80cb57f0 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_white.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/white_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_yellow.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_yellow.json new file mode 100644 index 00000000..497026aa --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_off_yellow.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/yellow_candle", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_orange.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_orange.json new file mode 100644 index 00000000..87adf078 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_orange.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/orange_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_pink.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_pink.json new file mode 100644 index 00000000..bfb1cd7f --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_pink.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/pink_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_purple.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_purple.json new file mode 100644 index 00000000..05597992 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_purple.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/purple_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_red.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_red.json new file mode 100644 index 00000000..81424288 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_red.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/red_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_white.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_white.json new file mode 100644 index 00000000..67223fae --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_white.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/white_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_yellow.json b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_yellow.json new file mode 100644 index 00000000..c85f0cd3 --- /dev/null +++ b/src/main/resources/assets/beautify/models/block/lamps/candelabras/standing_lamp_candelabra_yellow.json @@ -0,0 +1,9 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra", + "textures": { + "1": "minecraft:block/anvil", + "2": "minecraft:block/yellow_candle_lit", + "particle": "minecraft:block/anvil" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra.json deleted file mode 100644 index 2f2059dd..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra.json +++ /dev/null @@ -1,258 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout", - "elements": [ - { - "from": [13.5, 5.75, 7], - "to": [15.5, 11.75, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [1, -4.25, 0]}, - "faces": { - "north": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "east": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "south": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "west": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "up": {"uv": [0, 6, 2, 8], "texture": "#2"}, - "down": {"uv": [0, 14, 2, 16], "texture": "#2"} - } - }, - { - "from": [0.5, 5.75, 7], - "to": [2.5, 11.75, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [-1, -4.25, 0]}, - "faces": { - "north": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "east": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "south": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "west": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "up": {"uv": [0, 6, 2, 8], "texture": "#2"}, - "down": {"uv": [0, 14, 2, 16], "texture": "#2"} - } - }, - { - "from": [14, 11.75, 8], - "to": [15, 12.75, 8], - "rotation": {"angle": -45, "axis": "y", "origin": [14.5, 11.75, 8]}, - "faces": { - "north": {"uv": [0, 5, 0.5, 5.5], "texture": "#2"}, - "east": {"uv": [0, 5, 0, 5.5], "texture": "#2"}, - "south": {"uv": [0, 5, 1, 6], "texture": "#2"}, - "west": {"uv": [0, 5, 0, 5.5], "texture": "#2"}, - "up": {"uv": [0, 5, 0.5, 5], "texture": "#2"}, - "down": {"uv": [0, 5, 0.5, 5], "texture": "#2"} - } - }, - { - "from": [1.5, 11.75, 7.5], - "to": [1.5, 12.75, 8.5], - "rotation": {"angle": -45, "axis": "y", "origin": [1.5, 11.75, 8]}, - "faces": { - "north": {"uv": [0, 5, 0, 5.5], "texture": "#2"}, - "east": {"uv": [0, 5, 0.5, 5.5], "texture": "#2"}, - "south": {"uv": [0, 5, 0, 5.5], "texture": "#2"}, - "west": {"uv": [0, 5, 1, 6], "texture": "#2"}, - "up": {"uv": [0, 5, 0.5, 5], "rotation": 90, "texture": "#2"}, - "down": {"uv": [0, 5, 0.5, 5], "rotation": 270, "texture": "#2"} - } - }, - { - "from": [7, 5.75, 0.5], - "to": [9, 11.75, 2.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, -1.25, 8]}, - "faces": { - "north": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "east": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "south": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "west": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "up": {"uv": [0, 6, 2, 8], "rotation": 90, "texture": "#2"}, - "down": {"uv": [0, 14, 2, 16], "rotation": 270, "texture": "#2"} - } - }, - { - "from": [2.90381, 11.75, 3.40381], - "to": [3.90381, 12.75, 3.40381], - "rotation": {"angle": -45, "axis": "y", "origin": [8, -1.25, 8]}, - "faces": { - "north": {"uv": [0, 5, 1, 6], "texture": "#2"}, - "east": {"uv": [0, 5, 0, 5.5], "texture": "#2"}, - "south": {"uv": [0, 5, 0.5, 5.5], "texture": "#2"}, - "west": {"uv": [0, 5, 0, 5.5], "texture": "#2"}, - "up": {"uv": [0, 5, 0.5, 5], "rotation": 180, "texture": "#2"}, - "down": {"uv": [0, 5, 0.5, 5], "rotation": 180, "texture": "#2"} - } - }, - { - "from": [7, 5.75, 13.5], - "to": [9, 11.75, 15.5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, -1.25, 8]}, - "faces": { - "north": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "east": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "south": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "west": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "up": {"uv": [0, 6, 2, 8], "rotation": 90, "texture": "#2"}, - "down": {"uv": [0, 14, 2, 16], "rotation": 270, "texture": "#2"} - } - }, - { - "from": [12.59619, 11.75, 12.09619], - "to": [12.59619, 12.75, 13.09619], - "rotation": {"angle": -45, "axis": "y", "origin": [8, -1.25, 8]}, - "faces": { - "north": {"uv": [0, 5, 0, 5.5], "texture": "#2"}, - "east": {"uv": [0, 5, 0.5, 5.5], "texture": "#2"}, - "south": {"uv": [0, 5, 0, 5.5], "texture": "#2"}, - "west": {"uv": [0, 5, 1, 6], "texture": "#2"}, - "up": {"uv": [0, 5, 0.5, 5], "rotation": 90, "texture": "#2"}, - "down": {"uv": [0, 5, 0.5, 5], "rotation": 270, "texture": "#2"} - } - }, - { - "from": [5, 15, 5], - "to": [11, 16, 11], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 0, 8]}, - "faces": { - "north": {"uv": [0, 0, 6, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 6, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 6, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 6, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 6, 6], "texture": "#1"}, - "down": {"uv": [0, 0, 6, 6], "texture": "#1"} - } - }, - { - "from": [7, 2, 7], - "to": [9, 15, 9], - "faces": { - "north": {"uv": [0, 0, 2, 12], "texture": "#1"}, - "east": {"uv": [0, 0, 2, 12], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 12], "texture": "#1"}, - "west": {"uv": [0, 0, 2, 12], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#1"} - } - }, - { - "from": [0, 4.75, 6.5], - "to": [3, 5.75, 9.5], - "rotation": {"angle": 0, "axis": "y", "origin": [-1, -6.25, 0]}, - "faces": { - "north": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 3, 3], "texture": "#1"}, - "down": {"uv": [0, 0, 3, 3], "texture": "#1"} - } - }, - { - "from": [13, 4.75, 6.5], - "to": [16, 5.75, 9.5], - "rotation": {"angle": 0, "axis": "y", "origin": [1, -6.25, 0]}, - "faces": { - "north": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 3, 3], "texture": "#1"}, - "down": {"uv": [0, 0, 3, 3], "texture": "#1"} - } - }, - { - "from": [7, 2.5, 7.5], - "to": [14, 3.5, 8.5], - "rotation": {"angle": 22.5, "axis": "z", "origin": [9, 6.75, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 7], "rotation": 270, "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0, 0, 1, 7], "rotation": 90, "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#1"}, - "up": {"uv": [0, 0, 1, 7], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 1, 7], "rotation": 90, "texture": "#1"} - } - }, - { - "from": [2, 1.75, 7.5], - "to": [9, 2.75, 8.5], - "rotation": {"angle": -22.5, "axis": "z", "origin": [9, 6.75, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 7], "rotation": 90, "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 0, 1, 7], "rotation": 270, "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 0, 1, 7], "rotation": 270, "texture": "#1"}, - "down": {"uv": [0, 0, 1, 7], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [6.5, 4.75, 13], - "to": [9.5, 5.75, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, -1.25, 8]}, - "faces": { - "north": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 3, 3], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 3, 3], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [6.5, 4.75, 0], - "to": [9.5, 5.75, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [8, -1.25, 8]}, - "faces": { - "north": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 3, 3], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 3, 3], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [7.5, 1.52372, -1.13759], - "to": [8.5, 2.52372, 5.86241], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, -1.25, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#1"}, - "east": {"uv": [0, 0, 1, 7], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0, 0, 1, 1], "rotation": 270, "texture": "#1"}, - "west": {"uv": [0, 0, 1, 7], "rotation": 270, "texture": "#1"}, - "up": {"uv": [0, 0, 1, 7], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 7], "rotation": 180, "texture": "#1"} - } - }, - { - "from": [7.5, 1.50835, 9.98535], - "to": [8.5, 2.50835, 16.98535], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, -1.25, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#1"}, - "east": {"uv": [0, 0, 1, 7], "rotation": 270, "texture": "#1"}, - "south": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#1"}, - "west": {"uv": [0, 0, 1, 7], "rotation": 90, "texture": "#1"}, - "up": {"uv": [0, 0, 1, 7], "rotation": 180, "texture": "#1"}, - "down": {"uv": [0, 0, 1, 7], "texture": "#1"} - } - } - ], - "groups": [ - { - "name": "candle", - "origin": [0, -1, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5, 6, 7] - }, - { - "name": "stand", - "origin": [8, 10, 8], - "color": 0, - "children": [8, 9, 10, 11, 12, 13, 14, 15, 16, 17] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_black.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_black.json deleted file mode 100644 index 178b7f72..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_black.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/black_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_blue.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_blue.json deleted file mode 100644 index d6308cc4..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_blue.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/blue_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_brown.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_brown.json deleted file mode 100644 index 8398a7f1..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_brown.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/brown_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_cyan.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_cyan.json deleted file mode 100644 index 5461e31a..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_cyan.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/cyan_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_gray.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_gray.json deleted file mode 100644 index 41a65d4f..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_gray.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/gray_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_green.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_green.json deleted file mode 100644 index ce60a892..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_green.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/green_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_light_blue.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_light_blue.json deleted file mode 100644 index 138d2317..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_light_blue.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/light_blue_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_light_gray.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_light_gray.json deleted file mode 100644 index ba279f42..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_light_gray.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/light_gray_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_lime.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_lime.json deleted file mode 100644 index df263d74..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_lime.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/lime_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_magenta.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_magenta.json deleted file mode 100644 index 7ced8388..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_magenta.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/magenta_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off.json deleted file mode 100644 index 877cdc23..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_black.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_black.json deleted file mode 100644 index 840f5ce8..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_black.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/black_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_blue.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_blue.json deleted file mode 100644 index f39a856e..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_blue.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/blue_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_brown.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_brown.json deleted file mode 100644 index 264a168a..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_brown.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/brown_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_cyan.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_cyan.json deleted file mode 100644 index 306ab021..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_cyan.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/cyan_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_gray.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_gray.json deleted file mode 100644 index d7ec70b8..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_gray.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/gray_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_green.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_green.json deleted file mode 100644 index 0083245d..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_green.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/green_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_light_blue.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_light_blue.json deleted file mode 100644 index 8b43b173..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_light_blue.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/light_blue_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_light_gray.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_light_gray.json deleted file mode 100644 index 3bffc3f1..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_light_gray.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/light_gray_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_lime.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_lime.json deleted file mode 100644 index a40e3cf8..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_lime.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/lime_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_magenta.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_magenta.json deleted file mode 100644 index d9015538..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_magenta.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/magenta_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_orange.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_orange.json deleted file mode 100644 index 04c7c1b5..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_orange.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/orange_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_pink.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_pink.json deleted file mode 100644 index a83cb337..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_pink.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/pink_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_purple.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_purple.json deleted file mode 100644 index 7f8870b3..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_purple.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/purple_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_red.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_red.json deleted file mode 100644 index 2d428105..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_red.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/red_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_white.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_white.json deleted file mode 100644 index ffbc6bd2..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_white.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/white_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_yellow.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_yellow.json deleted file mode 100644 index b07adb71..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_off_yellow.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/yellow_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_orange.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_orange.json deleted file mode 100644 index 5e8c2e76..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_orange.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/orange_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_pink.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_pink.json deleted file mode 100644 index 8d43e5da..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_pink.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/pink_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_purple.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_purple.json deleted file mode 100644 index f1202eb6..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_purple.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/purple_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_red.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_red.json deleted file mode 100644 index a424a7b8..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_red.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/red_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_white.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_white.json deleted file mode 100644 index 8b49d1af..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_white.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/white_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_yellow.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_yellow.json deleted file mode 100644 index ae1e1b15..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/lamp_candleabra_yellow.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/yellow_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra.json deleted file mode 100644 index e466ad78..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra.json +++ /dev/null @@ -1,224 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/candle_lit", - "particle": "minecraft:block/candle" - }, - "render_type": "cutout", - "elements": [ - { - "from": [7, 8, 7], - "to": [9, 14, 9], - "faces": { - "north": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "east": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "south": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "west": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "up": {"uv": [0, 6, 2, 8], "texture": "#2"}, - "down": {"uv": [0, 14, 2, 16], "texture": "#2"} - } - }, - { - "from": [12.5, 9, 7], - "to": [14.5, 15, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "east": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "south": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "west": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "up": {"uv": [0, 6, 2, 8], "texture": "#2"}, - "down": {"uv": [0, 14, 2, 16], "texture": "#2"} - } - }, - { - "from": [1.5, 9, 7], - "to": [3.5, 15, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -1, 0]}, - "faces": { - "north": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "east": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "south": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "west": {"uv": [0, 8, 2, 14], "texture": "#2"}, - "up": {"uv": [0, 6, 2, 8], "texture": "#2"}, - "down": {"uv": [0, 14, 2, 16], "texture": "#2"} - } - }, - { - "from": [7.5, 14, 8], - "to": [8.5, 15, 8], - "rotation": {"angle": 45, "axis": "y", "origin": [8, 14, 8]}, - "faces": { - "north": {"uv": [0, 5, 0.5, 5.5], "texture": "#2"}, - "east": {"uv": [0, 5, 0, 5.5], "texture": "#2"}, - "south": {"uv": [0, 5, 1, 6], "texture": "#2"}, - "west": {"uv": [0, 5, 0, 5.5], "texture": "#2"}, - "up": {"uv": [0, 5, 0.5, 5], "texture": "#2"}, - "down": {"uv": [0, 5, 0.5, 5], "texture": "#2"} - } - }, - { - "from": [13, 15, 8], - "to": [14, 16, 8], - "rotation": {"angle": -45, "axis": "y", "origin": [13.5, 15, 8]}, - "faces": { - "north": {"uv": [0, 5, 0.5, 5.5], "texture": "#2"}, - "east": {"uv": [0, 5, 0, 5.5], "texture": "#2"}, - "south": {"uv": [0, 5, 1, 6], "texture": "#2"}, - "west": {"uv": [0, 5, 0, 5.5], "texture": "#2"}, - "up": {"uv": [0, 5, 0.5, 5], "texture": "#2"}, - "down": {"uv": [0, 5, 0.5, 5], "texture": "#2"} - } - }, - { - "from": [2.5, 15, 7.5], - "to": [2.5, 16, 8.5], - "rotation": {"angle": -45, "axis": "y", "origin": [2.5, 15, 8]}, - "faces": { - "north": {"uv": [0, 5, 0, 5.5], "texture": "#2"}, - "east": {"uv": [0, 5, 0.5, 5.5], "texture": "#2"}, - "south": {"uv": [0, 5, 0, 5.5], "texture": "#2"}, - "west": {"uv": [0, 5, 1, 6], "texture": "#2"}, - "up": {"uv": [0, 5, 0.5, 5], "rotation": 90, "texture": "#2"}, - "down": {"uv": [0, 5, 0.5, 5], "rotation": 270, "texture": "#2"} - } - }, - { - "from": [5, 0, 5], - "to": [11, 1, 11], - "faces": { - "north": {"uv": [0, 0, 6, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 6, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 6, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 6, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 6, 6], "texture": "#1"}, - "down": {"uv": [0, 0, 6, 6], "texture": "#1"} - } - }, - { - "from": [7, 1, 7], - "to": [9, 7, 9], - "faces": { - "north": {"uv": [0, 0, 2, 6], "texture": "#1"}, - "east": {"uv": [0, 0, 2, 6], "texture": "#1"}, - "south": {"uv": [0, 0, 2, 6], "texture": "#1"}, - "west": {"uv": [0, 0, 2, 6], "texture": "#1"}, - "up": {"uv": [0, 0, 2, 2], "texture": "#1"}, - "down": {"uv": [0, 0, 2, 2], "texture": "#1"} - } - }, - { - "from": [6.5, 7, 6.5], - "to": [9.5, 8, 9.5], - "faces": { - "north": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 3, 3], "texture": "#1"}, - "down": {"uv": [0, 0, 3, 3], "texture": "#1"} - } - }, - { - "from": [1, 8, 6.5], - "to": [4, 9, 9.5], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -3, 0]}, - "faces": { - "north": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 3, 3], "texture": "#1"}, - "down": {"uv": [0, 0, 3, 3], "texture": "#1"} - } - }, - { - "from": [12, 8, 6.5], - "to": [15, 9, 9.5], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -3, 0]}, - "faces": { - "north": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "east": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "south": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "west": {"uv": [0, 0, 3, 1], "texture": "#1"}, - "up": {"uv": [0, 0, 3, 3], "texture": "#1"}, - "down": {"uv": [0, 0, 3, 3], "texture": "#1"} - } - }, - { - "from": [2.5, 6, 7.5], - "to": [3.5, 13, 8.5], - "rotation": {"angle": 45, "axis": "z", "origin": [8, 10, 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, 1], "texture": "#1"}, - "down": {"uv": [0, 0, 1, 1], "texture": "#1"} - } - }, - { - "from": [4, 4.5, 7.5], - "to": [11, 5.5, 8.5], - "rotation": {"angle": 45, "axis": "z", "origin": [8, 10, 8]}, - "faces": { - "north": {"uv": [0, 0, 1, 7], "rotation": 270, "texture": "#1"}, - "east": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#1"}, - "south": {"uv": [0, 0, 1, 7], "rotation": 90, "texture": "#1"}, - "west": {"uv": [0, 0, 1, 1], "rotation": 90, "texture": "#1"}, - "up": {"uv": [0, 0, 1, 7], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0, 0, 1, 7], "rotation": 90, "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 0.75, 1.25], - "scale": [0.7, 0.7, 0.7] - }, - "thirdperson_lefthand": { - "translation": [0, 0.75, 1.25], - "scale": [0.7, 0.7, 0.7] - }, - "firstperson_righthand": { - "rotation": [0, -24.5, 0], - "translation": [-0.75, 2, 1.25], - "scale": [0.7, 0.7, 0.7] - }, - "firstperson_lefthand": { - "rotation": [0, -24.5, 0], - "translation": [-0.75, 2, 1.25], - "scale": [0.7, 0.7, 0.7] - }, - "ground": { - "translation": [0, 1.75, 0], - "scale": [0.7, 0.7, 0.7] - }, - "gui": { - "rotation": [25, 45, 0], - "scale": [0.8, 0.8, 0.8] - }, - "head": { - "translation": [0, 14.25, 0] - }, - "fixed": { - "translation": [0, 0, -0.5] - } - }, - "groups": [ - { - "name": "candle", - "origin": [0, -1, 0], - "color": 0, - "children": [0, 1, 2, 3, 4, 5] - }, - { - "name": "stand", - "origin": [8, 10, 8], - "color": 0, - "children": [6, 7, 8, 9, 10, 11, 12] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_black.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_black.json deleted file mode 100644 index 0f02b612..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_black.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/black_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_blue.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_blue.json deleted file mode 100644 index da5adae5..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_blue.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/blue_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_brown.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_brown.json deleted file mode 100644 index 5e337d3b..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_brown.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/brown_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_cyan.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_cyan.json deleted file mode 100644 index eae23648..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_cyan.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/cyan_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_gray.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_gray.json deleted file mode 100644 index 24f0a80b..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_gray.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/gray_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_green.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_green.json deleted file mode 100644 index d1429160..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_green.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/green_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_light_blue.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_light_blue.json deleted file mode 100644 index a71e1366..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_light_blue.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/light_blue_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_light_gray.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_light_gray.json deleted file mode 100644 index b4075fd1..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_light_gray.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/light_gray_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_lime.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_lime.json deleted file mode 100644 index 468f414a..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_lime.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/lime_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_magenta.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_magenta.json deleted file mode 100644 index e6a2e283..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_magenta.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/magenta_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off.json deleted file mode 100644 index b747e5aa..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_black.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_black.json deleted file mode 100644 index a6404b48..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_black.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/black_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_blue.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_blue.json deleted file mode 100644 index 9d7bb814..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_blue.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/blue_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_brown.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_brown.json deleted file mode 100644 index 8aa60682..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_brown.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/brown_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_cyan.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_cyan.json deleted file mode 100644 index c03e6ecd..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_cyan.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/cyan_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_gray.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_gray.json deleted file mode 100644 index 6b27c239..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_gray.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/gray_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_green.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_green.json deleted file mode 100644 index c829fc77..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_green.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/green_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_light_blue.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_light_blue.json deleted file mode 100644 index a51c6a00..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_light_blue.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/light_blue_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_light_gray.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_light_gray.json deleted file mode 100644 index 65c41059..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_light_gray.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/light_gray_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_lime.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_lime.json deleted file mode 100644 index bfbbcd23..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_lime.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/lime_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_magenta.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_magenta.json deleted file mode 100644 index 88863345..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_magenta.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/magenta_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_orange.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_orange.json deleted file mode 100644 index a51d086d..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_orange.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/orange_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_pink.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_pink.json deleted file mode 100644 index 46403cc3..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_pink.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/pink_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_purple.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_purple.json deleted file mode 100644 index d65dab94..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_purple.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/purple_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_red.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_red.json deleted file mode 100644 index 6b57cd26..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_red.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/red_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_white.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_white.json deleted file mode 100644 index f607dba7..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_white.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/white_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_yellow.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_yellow.json deleted file mode 100644 index c59ba472..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_off_yellow.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/yellow_candle", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_orange.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_orange.json deleted file mode 100644 index de32dfd9..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_orange.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/orange_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_pink.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_pink.json deleted file mode 100644 index 59774bcb..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_pink.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/pink_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_purple.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_purple.json deleted file mode 100644 index 93af9a54..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_purple.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/purple_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_red.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_red.json deleted file mode 100644 index 8554402e..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_red.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/red_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_white.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_white.json deleted file mode 100644 index d66900e7..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_white.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/white_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_yellow.json b/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_yellow.json deleted file mode 100644 index 38fb07b7..00000000 --- a/src/main/resources/assets/beautify/models/block/lamps/candleabras/standing_lamp_candleabra_yellow.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra", - "textures": { - "1": "minecraft:block/anvil", - "2": "minecraft:block/yellow_candle_lit", - "particle": "minecraft:block/anvil" - }, - "render_type": "cutout" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candelabra.json b/src/main/resources/assets/beautify/models/item/lamp_candelabra.json new file mode 100644 index 00000000..65f4e557 --- /dev/null +++ b/src/main/resources/assets/beautify/models/item/lamp_candelabra.json @@ -0,0 +1,3 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candelabra_black.json b/src/main/resources/assets/beautify/models/item/lamp_candelabra_black.json new file mode 100644 index 00000000..ddb9f9fd --- /dev/null +++ b/src/main/resources/assets/beautify/models/item/lamp_candelabra_black.json @@ -0,0 +1,3 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_black" +} diff --git a/src/main/resources/assets/beautify/models/item/lamp_candelabra_blue.json b/src/main/resources/assets/beautify/models/item/lamp_candelabra_blue.json new file mode 100644 index 00000000..768c708e --- /dev/null +++ b/src/main/resources/assets/beautify/models/item/lamp_candelabra_blue.json @@ -0,0 +1,3 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_blue" +} diff --git a/src/main/resources/assets/beautify/models/item/lamp_candelabra_brown.json b/src/main/resources/assets/beautify/models/item/lamp_candelabra_brown.json new file mode 100644 index 00000000..fba3d43d --- /dev/null +++ b/src/main/resources/assets/beautify/models/item/lamp_candelabra_brown.json @@ -0,0 +1,3 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_brown" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candelabra_cyan.json b/src/main/resources/assets/beautify/models/item/lamp_candelabra_cyan.json new file mode 100644 index 00000000..6bc1cc13 --- /dev/null +++ b/src/main/resources/assets/beautify/models/item/lamp_candelabra_cyan.json @@ -0,0 +1,3 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_cyan" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candelabra_gray.json b/src/main/resources/assets/beautify/models/item/lamp_candelabra_gray.json new file mode 100644 index 00000000..3a2163a2 --- /dev/null +++ b/src/main/resources/assets/beautify/models/item/lamp_candelabra_gray.json @@ -0,0 +1,3 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_gray" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candelabra_green.json b/src/main/resources/assets/beautify/models/item/lamp_candelabra_green.json new file mode 100644 index 00000000..46ee4767 --- /dev/null +++ b/src/main/resources/assets/beautify/models/item/lamp_candelabra_green.json @@ -0,0 +1,3 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_green" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candelabra_light_blue.json b/src/main/resources/assets/beautify/models/item/lamp_candelabra_light_blue.json new file mode 100644 index 00000000..3f8d7d1d --- /dev/null +++ b/src/main/resources/assets/beautify/models/item/lamp_candelabra_light_blue.json @@ -0,0 +1,3 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_light_blue" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candelabra_light_gray.json b/src/main/resources/assets/beautify/models/item/lamp_candelabra_light_gray.json new file mode 100644 index 00000000..800e237e --- /dev/null +++ b/src/main/resources/assets/beautify/models/item/lamp_candelabra_light_gray.json @@ -0,0 +1,3 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_light_gray" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candelabra_lime.json b/src/main/resources/assets/beautify/models/item/lamp_candelabra_lime.json new file mode 100644 index 00000000..8a2fd49e --- /dev/null +++ b/src/main/resources/assets/beautify/models/item/lamp_candelabra_lime.json @@ -0,0 +1,3 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_lime" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candelabra_magenta.json b/src/main/resources/assets/beautify/models/item/lamp_candelabra_magenta.json new file mode 100644 index 00000000..49714fb7 --- /dev/null +++ b/src/main/resources/assets/beautify/models/item/lamp_candelabra_magenta.json @@ -0,0 +1,3 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_magenta" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candelabra_orange.json b/src/main/resources/assets/beautify/models/item/lamp_candelabra_orange.json new file mode 100644 index 00000000..6f669054 --- /dev/null +++ b/src/main/resources/assets/beautify/models/item/lamp_candelabra_orange.json @@ -0,0 +1,3 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_orange" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candelabra_pink.json b/src/main/resources/assets/beautify/models/item/lamp_candelabra_pink.json new file mode 100644 index 00000000..614d2e44 --- /dev/null +++ b/src/main/resources/assets/beautify/models/item/lamp_candelabra_pink.json @@ -0,0 +1,3 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_pink" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candelabra_purple.json b/src/main/resources/assets/beautify/models/item/lamp_candelabra_purple.json new file mode 100644 index 00000000..4e690324 --- /dev/null +++ b/src/main/resources/assets/beautify/models/item/lamp_candelabra_purple.json @@ -0,0 +1,3 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_purple" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candelabra_red.json b/src/main/resources/assets/beautify/models/item/lamp_candelabra_red.json new file mode 100644 index 00000000..9c6c8f1b --- /dev/null +++ b/src/main/resources/assets/beautify/models/item/lamp_candelabra_red.json @@ -0,0 +1,3 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_red" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candelabra_white.json b/src/main/resources/assets/beautify/models/item/lamp_candelabra_white.json new file mode 100644 index 00000000..da640189 --- /dev/null +++ b/src/main/resources/assets/beautify/models/item/lamp_candelabra_white.json @@ -0,0 +1,3 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_white" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candelabra_yellow.json b/src/main/resources/assets/beautify/models/item/lamp_candelabra_yellow.json new file mode 100644 index 00000000..d63465c5 --- /dev/null +++ b/src/main/resources/assets/beautify/models/item/lamp_candelabra_yellow.json @@ -0,0 +1,3 @@ +{ + "parent": "beautify:block/lamps/candelabras/standing_lamp_candelabra_off_yellow" +} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candleabra.json b/src/main/resources/assets/beautify/models/item/lamp_candleabra.json deleted file mode 100644 index a0ef516c..00000000 --- a/src/main/resources/assets/beautify/models/item/lamp_candleabra.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candleabra_black.json b/src/main/resources/assets/beautify/models/item/lamp_candleabra_black.json deleted file mode 100644 index 00be8894..00000000 --- a/src/main/resources/assets/beautify/models/item/lamp_candleabra_black.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_black" -} diff --git a/src/main/resources/assets/beautify/models/item/lamp_candleabra_blue.json b/src/main/resources/assets/beautify/models/item/lamp_candleabra_blue.json deleted file mode 100644 index be809d33..00000000 --- a/src/main/resources/assets/beautify/models/item/lamp_candleabra_blue.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_blue" -} diff --git a/src/main/resources/assets/beautify/models/item/lamp_candleabra_brown.json b/src/main/resources/assets/beautify/models/item/lamp_candleabra_brown.json deleted file mode 100644 index 4bcea5ff..00000000 --- a/src/main/resources/assets/beautify/models/item/lamp_candleabra_brown.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_brown" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candleabra_cyan.json b/src/main/resources/assets/beautify/models/item/lamp_candleabra_cyan.json deleted file mode 100644 index b3dfca4e..00000000 --- a/src/main/resources/assets/beautify/models/item/lamp_candleabra_cyan.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_cyan" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candleabra_gray.json b/src/main/resources/assets/beautify/models/item/lamp_candleabra_gray.json deleted file mode 100644 index 0e6a97a3..00000000 --- a/src/main/resources/assets/beautify/models/item/lamp_candleabra_gray.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_gray" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candleabra_green.json b/src/main/resources/assets/beautify/models/item/lamp_candleabra_green.json deleted file mode 100644 index 28c216bb..00000000 --- a/src/main/resources/assets/beautify/models/item/lamp_candleabra_green.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_green" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candleabra_light_blue.json b/src/main/resources/assets/beautify/models/item/lamp_candleabra_light_blue.json deleted file mode 100644 index 6620567f..00000000 --- a/src/main/resources/assets/beautify/models/item/lamp_candleabra_light_blue.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_blue" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candleabra_light_gray.json b/src/main/resources/assets/beautify/models/item/lamp_candleabra_light_gray.json deleted file mode 100644 index 9ab46ac7..00000000 --- a/src/main/resources/assets/beautify/models/item/lamp_candleabra_light_gray.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_light_gray" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candleabra_lime.json b/src/main/resources/assets/beautify/models/item/lamp_candleabra_lime.json deleted file mode 100644 index bf8c9bd6..00000000 --- a/src/main/resources/assets/beautify/models/item/lamp_candleabra_lime.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_lime" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candleabra_magenta.json b/src/main/resources/assets/beautify/models/item/lamp_candleabra_magenta.json deleted file mode 100644 index c28f2001..00000000 --- a/src/main/resources/assets/beautify/models/item/lamp_candleabra_magenta.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_magenta" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candleabra_orange.json b/src/main/resources/assets/beautify/models/item/lamp_candleabra_orange.json deleted file mode 100644 index 75a6f5aa..00000000 --- a/src/main/resources/assets/beautify/models/item/lamp_candleabra_orange.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_orange" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candleabra_pink.json b/src/main/resources/assets/beautify/models/item/lamp_candleabra_pink.json deleted file mode 100644 index 984f6451..00000000 --- a/src/main/resources/assets/beautify/models/item/lamp_candleabra_pink.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_pink" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candleabra_purple.json b/src/main/resources/assets/beautify/models/item/lamp_candleabra_purple.json deleted file mode 100644 index 26a14d4a..00000000 --- a/src/main/resources/assets/beautify/models/item/lamp_candleabra_purple.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_purple" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candleabra_red.json b/src/main/resources/assets/beautify/models/item/lamp_candleabra_red.json deleted file mode 100644 index d40a0f6a..00000000 --- a/src/main/resources/assets/beautify/models/item/lamp_candleabra_red.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_red" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candleabra_white.json b/src/main/resources/assets/beautify/models/item/lamp_candleabra_white.json deleted file mode 100644 index 61b01c48..00000000 --- a/src/main/resources/assets/beautify/models/item/lamp_candleabra_white.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_white" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/models/item/lamp_candleabra_yellow.json b/src/main/resources/assets/beautify/models/item/lamp_candleabra_yellow.json deleted file mode 100644 index b3dee1c4..00000000 --- a/src/main/resources/assets/beautify/models/item/lamp_candleabra_yellow.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "beautify:block/lamps/candleabras/standing_lamp_candleabra_off_yellow" -} \ No newline at end of file diff --git a/src/main/resources/assets/beautify/textures/block/desktop.ini b/src/main/resources/assets/beautify/textures/block/desktop.ini deleted file mode 100644 index 11ff8455..00000000 --- a/src/main/resources/assets/beautify/textures/block/desktop.ini +++ /dev/null @@ -1,2 +0,0 @@ -[LocalizedFileNames] -cherry_frame_texture.png=@cherry_frame_texture.png,0 diff --git a/src/main/resources/data/beautify/advancements/candelabras.json b/src/main/resources/data/beautify/advancements/candelabras.json new file mode 100644 index 00000000..4428390f --- /dev/null +++ b/src/main/resources/data/beautify/advancements/candelabras.json @@ -0,0 +1,39 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "requirement": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": [ + "minecraft:iron_nugget" + ], + "min": 1 + } + ] + } + } + }, + "rewards": { + "recipes": [ + "beautify:lamp_candelabra", + "beautify:lamp_candelabra_light_blue", + "beautify:lamp_candelabra_light_gray", + "beautify:lamp_candelabra_black", + "beautify:lamp_candelabra_blue", + "beautify:lamp_candelabra_brown", + "beautify:lamp_candelabra_cyan", + "beautify:lamp_candelabra_gray", + "beautify:lamp_candelabra_green", + "beautify:lamp_candelabra_lime", + "beautify:lamp_candelabra_magenta", + "beautify:lamp_candelabra_orange", + "beautify:lamp_candelabra_pink", + "beautify:lamp_candelabra_purple", + "beautify:lamp_candelabra_red", + "beautify:lamp_candelabra_white", + "beautify:lamp_candelabra_yellow" + ] + } +} diff --git a/src/main/resources/data/beautify/advancements/candleabras.json b/src/main/resources/data/beautify/advancements/candleabras.json deleted file mode 100644 index 4a4271ff..00000000 --- a/src/main/resources/data/beautify/advancements/candleabras.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "parent": "minecraft:recipes/root", - "criteria": { - "requirement": { - "trigger": "minecraft:inventory_changed", - "conditions": { - "items": [ - { - "items": [ - "minecraft:iron_nugget" - ], - "min": 1 - } - ] - } - } - }, - "rewards": { - "recipes": [ - "beautify:candleabra", - "beautify:candleabra_light_blue", - "beautify:candleabra_light_gray", - "beautify:candleabra_black", - "beautify:candleabra_blue", - "beautify:candleabra_brown", - "beautify:candleabra_cyan", - "beautify:candleabra_gray", - "beautify:candleabra_green", - "beautify:candleabra_lime", - "beautify:candleabra_magenta", - "beautify:candleabra_orange", - "beautify:candleabra_pink", - "beautify:candleabra_purple", - "beautify:candleabra_red", - "beautify:candleabra_white", - "beautify:candleabra_yellow" - ] - } -} diff --git a/src/main/resources/data/beautify/advancements/progression/blinds.json b/src/main/resources/data/beautify/advancements/progression/blinds.json index 3f1f26da..145e33e2 100644 --- a/src/main/resources/data/beautify/advancements/progression/blinds.json +++ b/src/main/resources/data/beautify/advancements/progression/blinds.json @@ -1,7 +1,7 @@ { "display": { "icon": { - "item": "beautify:oak_blinds" + "id": "beautify:oak_blinds" }, "title": { "translate": "advancements.beautify.blinds.title" diff --git a/src/main/resources/data/beautify/advancements/progression/bookstack.json b/src/main/resources/data/beautify/advancements/progression/bookstack.json index ce513800..287aa0ba 100644 --- a/src/main/resources/data/beautify/advancements/progression/bookstack.json +++ b/src/main/resources/data/beautify/advancements/progression/bookstack.json @@ -1,7 +1,7 @@ { "display": { "icon": { - "item": "beautify:bookstack" + "id": "beautify:bookstack" }, "title": { "translate": "advancements.beautify.bookstack.title" diff --git a/src/main/resources/data/beautify/advancements/progression/candelabra.json b/src/main/resources/data/beautify/advancements/progression/candelabra.json index 786e7f5f..f04d7d3b 100644 --- a/src/main/resources/data/beautify/advancements/progression/candelabra.json +++ b/src/main/resources/data/beautify/advancements/progression/candelabra.json @@ -1,7 +1,7 @@ { "display": { "icon": { - "item": "beautify:lamp_candleabra" + "id": "beautify:lamp_candelabra" }, "title": { "translate": "advancements.beautify.candelabra.title" @@ -22,7 +22,7 @@ "items": [ { "items": [ - "beautify:lamp_candleabra" + "beautify:lamp_candelabra" ] } ] diff --git a/src/main/resources/data/beautify/advancements/progression/hanging_pot.json b/src/main/resources/data/beautify/advancements/progression/hanging_pot.json index 9adb9ca5..aab61ca2 100644 --- a/src/main/resources/data/beautify/advancements/progression/hanging_pot.json +++ b/src/main/resources/data/beautify/advancements/progression/hanging_pot.json @@ -1,7 +1,7 @@ { "display": { "icon": { - "item": "beautify:hanging_pot" + "id": "beautify:hanging_pot" }, "title": { "translate": "advancements.beautify.hanging_pot.title" diff --git a/src/main/resources/data/beautify/advancements/progression/light.json b/src/main/resources/data/beautify/advancements/progression/light.json index d39fd947..38106e23 100644 --- a/src/main/resources/data/beautify/advancements/progression/light.json +++ b/src/main/resources/data/beautify/advancements/progression/light.json @@ -1,7 +1,7 @@ { "display": { "icon": { - "item": "beautify:lamp_light_bulb" + "id": "beautify:lamp_light_bulb" }, "title": { "translate": "advancements.beautify.light.title" diff --git a/src/main/resources/data/beautify/advancements/progression/root.json b/src/main/resources/data/beautify/advancements/progression/root.json index 3872cbf9..0356e9ee 100644 --- a/src/main/resources/data/beautify/advancements/progression/root.json +++ b/src/main/resources/data/beautify/advancements/progression/root.json @@ -1,7 +1,7 @@ { "display": { "icon": { - "item": "minecraft:rose_bush" + "id": "minecraft:rose_bush" }, "title": { "translate": "advancements.beautify.root.title" diff --git a/src/main/resources/data/beautify/advancements/progression/rope.json b/src/main/resources/data/beautify/advancements/progression/rope.json index 3aaf09fe..cd99142e 100644 --- a/src/main/resources/data/beautify/advancements/progression/rope.json +++ b/src/main/resources/data/beautify/advancements/progression/rope.json @@ -1,7 +1,7 @@ { "display": { "icon": { - "item": "beautify:rope" + "id": "beautify:rope" }, "title": { "translate": "advancements.beautify.rope.title" diff --git a/src/main/resources/data/beautify/loot_tables/blocks/acacia_picture_frame.json b/src/main/resources/data/beautify/loot_tables/blocks/acacia_picture_frame.json index 99827fd4..d366a6b5 100644 --- a/src/main/resources/data/beautify/loot_tables/blocks/acacia_picture_frame.json +++ b/src/main/resources/data/beautify/loot_tables/blocks/acacia_picture_frame.json @@ -5,7 +5,7 @@ "entries": [ { "type": "minecraft:item", - "name": "beautify:warped_picture_frame" + "name": "beautify:acacia_picture_frame" } ] } diff --git a/src/main/resources/data/beautify/loot_tables/blocks/acacia_trellis.json b/src/main/resources/data/beautify/loot_tables/blocks/acacia_trellis.json index 1ca746ac..41d58f21 100644 --- a/src/main/resources/data/beautify/loot_tables/blocks/acacia_trellis.json +++ b/src/main/resources/data/beautify/loot_tables/blocks/acacia_trellis.json @@ -19,7 +19,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/acacia_rose_trellis", + "value": "beautify:blocks/acacia_rose_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -32,7 +32,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/acacia_sunflower_trellis", + "value": "beautify:blocks/acacia_sunflower_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -45,7 +45,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/acacia_peony_trellis", + "value": "beautify:blocks/acacia_peony_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -58,7 +58,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/acacia_lilac_trellis", + "value": "beautify:blocks/acacia_lilac_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -71,7 +71,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/acacia_vine_trellis", + "value": "beautify:blocks/acacia_vine_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -84,7 +84,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/acacia_weeping_vines_trellis", + "value": "beautify:blocks/acacia_weeping_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -97,7 +97,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/acacia_twisting_vines_trellis", + "value": "beautify:blocks/acacia_twisting_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -110,7 +110,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/acacia_lichen_trellis", + "value": "beautify:blocks/acacia_lichen_trellis", "conditions": [ { "condition": "minecraft:block_state_property", diff --git a/src/main/resources/data/beautify/loot_tables/blocks/birch_trellis.json b/src/main/resources/data/beautify/loot_tables/blocks/birch_trellis.json index 85c0c7bf..47a8176e 100644 --- a/src/main/resources/data/beautify/loot_tables/blocks/birch_trellis.json +++ b/src/main/resources/data/beautify/loot_tables/blocks/birch_trellis.json @@ -19,7 +19,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/birch_rose_trellis", + "value": "beautify:blocks/birch_rose_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -32,7 +32,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/birch_sunflower_trellis", + "value": "beautify:blocks/birch_sunflower_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -45,7 +45,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/birch_peony_trellis", + "value": "beautify:blocks/birch_peony_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -58,7 +58,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/birch_lilac_trellis", + "value": "beautify:blocks/birch_lilac_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -71,7 +71,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/birch_vine_trellis", + "value": "beautify:blocks/birch_vine_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -84,7 +84,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/birch_weeping_vines_trellis", + "value": "beautify:blocks/birch_weeping_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -97,7 +97,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/birch_twisting_vines_trellis", + "value": "beautify:blocks/birch_twisting_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -110,7 +110,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/birch_lichen_trellis", + "value": "beautify:blocks/birch_lichen_trellis", "conditions": [ { "condition": "minecraft:block_state_property", diff --git a/src/main/resources/data/beautify/loot_tables/blocks/cherry_trellis.json b/src/main/resources/data/beautify/loot_tables/blocks/cherry_trellis.json index d9515ef2..55ff2eeb 100644 --- a/src/main/resources/data/beautify/loot_tables/blocks/cherry_trellis.json +++ b/src/main/resources/data/beautify/loot_tables/blocks/cherry_trellis.json @@ -19,7 +19,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/cherry_rose_trellis", + "value": "beautify:blocks/cherry_rose_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -32,7 +32,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/cherry_sunflower_trellis", + "value": "beautify:blocks/cherry_sunflower_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -45,7 +45,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/cherry_peony_trellis", + "value": "beautify:blocks/cherry_peony_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -58,7 +58,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/cherry_lilac_trellis", + "value": "beautify:blocks/cherry_lilac_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -71,7 +71,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/cherry_vine_trellis", + "value": "beautify:blocks/cherry_vine_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -84,7 +84,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/cherry_weeping_vines_trellis", + "value": "beautify:blocks/cherry_weeping_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -97,7 +97,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/cherry_twisting_vines_trellis", + "value": "beautify:blocks/cherry_twisting_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -110,7 +110,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/cherry_lichen_trellis", + "value": "beautify:blocks/cherry_lichen_trellis", "conditions": [ { "condition": "minecraft:block_state_property", diff --git a/src/main/resources/data/beautify/loot_tables/blocks/crimson_trellis.json b/src/main/resources/data/beautify/loot_tables/blocks/crimson_trellis.json index 3e3c7581..f3f9827a 100644 --- a/src/main/resources/data/beautify/loot_tables/blocks/crimson_trellis.json +++ b/src/main/resources/data/beautify/loot_tables/blocks/crimson_trellis.json @@ -19,7 +19,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/crimson_rose_trellis", + "value": "beautify:blocks/crimson_rose_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -32,7 +32,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/crimson_sunflower_trellis", + "value": "beautify:blocks/crimson_sunflower_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -45,7 +45,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/crimson_peony_trellis", + "value": "beautify:blocks/crimson_peony_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -58,7 +58,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/crimson_lilac_trellis", + "value": "beautify:blocks/crimson_lilac_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -71,7 +71,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/crimson_vine_trellis", + "value": "beautify:blocks/crimson_vine_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -84,7 +84,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/crimson_weeping_vines_trellis", + "value": "beautify:blocks/crimson_weeping_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -97,7 +97,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/crimson_twisting_vines_trellis", + "value": "beautify:blocks/crimson_twisting_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -110,7 +110,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/crimson_lichen_trellis", + "value": "beautify:blocks/crimson_lichen_trellis", "conditions": [ { "condition": "minecraft:block_state_property", diff --git a/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_trellis.json b/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_trellis.json index 7750fef3..32ad09fa 100644 --- a/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_trellis.json +++ b/src/main/resources/data/beautify/loot_tables/blocks/dark_oak_trellis.json @@ -19,7 +19,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/dark_oak_rose_trellis", + "value": "beautify:blocks/dark_oak_rose_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -32,7 +32,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/dark_oak_sunflower_trellis", + "value": "beautify:blocks/dark_oak_sunflower_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -45,7 +45,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/dark_oak_peony_trellis", + "value": "beautify:blocks/dark_oak_peony_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -58,7 +58,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/dark_oak_lilac_trellis", + "value": "beautify:blocks/dark_oak_lilac_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -71,7 +71,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/dark_oak_vine_trellis", + "value": "beautify:blocks/dark_oak_vine_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -84,7 +84,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/dark_oak_weeping_vines_trellis", + "value": "beautify:blocks/dark_oak_weeping_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -97,7 +97,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/dark_oak_twisting_vines_trellis", + "value": "beautify:blocks/dark_oak_twisting_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -110,7 +110,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/dark_oak_lichen_trellis", + "value": "beautify:blocks/dark_oak_lichen_trellis", "conditions": [ { "condition": "minecraft:block_state_property", diff --git a/src/main/resources/data/beautify/loot_tables/blocks/grass_pot.json b/src/main/resources/data/beautify/loot_tables/blocks/grass_pot.json index 806e3768..4937e396 100644 --- a/src/main/resources/data/beautify/loot_tables/blocks/grass_pot.json +++ b/src/main/resources/data/beautify/loot_tables/blocks/grass_pot.json @@ -15,7 +15,7 @@ "entries": [ { "type": "minecraft:item", - "name": "minecraft:grass" + "name": "minecraft:short_grass" } ] }, @@ -24,7 +24,7 @@ "entries": [ { "type": "minecraft:item", - "name": "minecraft:grass", + "name": "minecraft:short_grass", "conditions": [ { "condition": "minecraft:block_state_property", diff --git a/src/main/resources/data/beautify/loot_tables/blocks/hanging_pot.json b/src/main/resources/data/beautify/loot_tables/blocks/hanging_pot.json index 7b7a5a97..5ba1842b 100644 --- a/src/main/resources/data/beautify/loot_tables/blocks/hanging_pot.json +++ b/src/main/resources/data/beautify/loot_tables/blocks/hanging_pot.json @@ -19,7 +19,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/rose_pot", + "value": "beautify:blocks/rose_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -32,7 +32,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/lilac_pot", + "value": "beautify:blocks/lilac_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -45,7 +45,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/orchid_pot", + "value": "beautify:blocks/orchid_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -58,7 +58,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/vines_pot", + "value": "beautify:blocks/vines_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -71,7 +71,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/sunflower_pot", + "value": "beautify:blocks/sunflower_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -84,7 +84,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/peony_pot", + "value": "beautify:blocks/peony_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -97,7 +97,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/azure_bluet_pot", + "value": "beautify:blocks/azure_bluet_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -110,7 +110,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/red_tulip_pot", + "value": "beautify:blocks/red_tulip_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -123,7 +123,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/orange_tulip_pot", + "value": "beautify:blocks/orange_tulip_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -136,7 +136,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/white_tulip_pot", + "value": "beautify:blocks/white_tulip_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -149,7 +149,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/pink_tulip_pot", + "value": "beautify:blocks/pink_tulip_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -162,7 +162,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/allium_pot", + "value": "beautify:blocks/allium_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -175,7 +175,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/dandelion_pot", + "value": "beautify:blocks/dandelion_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -188,7 +188,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/poppy_pot", + "value": "beautify:blocks/poppy_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -201,7 +201,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/poppy_pot", + "value": "beautify:blocks/poppy_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -214,7 +214,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/glow_lichen_pot", + "value": "beautify:blocks/glow_lichen_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -227,7 +227,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/oxeye_daisy_pot", + "value": "beautify:blocks/oxeye_daisy_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -240,7 +240,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/lily_pot", + "value": "beautify:blocks/lily_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -253,7 +253,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/cornflower_pot", + "value": "beautify:blocks/cornflower_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -266,7 +266,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/weeping_vines_pot", + "value": "beautify:blocks/weeping_vines_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -279,7 +279,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/twisting_vines_pot", + "value": "beautify:blocks/twisting_vines_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -292,7 +292,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/wither_rose_pot", + "value": "beautify:blocks/wither_rose_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -305,7 +305,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/glowberry_pot", + "value": "beautify:blocks/glowberry_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -318,7 +318,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/berry_pot", + "value": "beautify:blocks/berry_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -331,7 +331,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/grass_pot", + "value": "beautify:blocks/grass_pot", "conditions": [ { "condition": "minecraft:block_state_property", @@ -344,7 +344,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/fern_pot", + "value": "beautify:blocks/fern_pot", "conditions": [ { "condition": "minecraft:block_state_property", diff --git a/src/main/resources/data/beautify/loot_tables/blocks/jungle_trellis.json b/src/main/resources/data/beautify/loot_tables/blocks/jungle_trellis.json index 056a6542..8298b6f6 100644 --- a/src/main/resources/data/beautify/loot_tables/blocks/jungle_trellis.json +++ b/src/main/resources/data/beautify/loot_tables/blocks/jungle_trellis.json @@ -19,7 +19,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/jungle_rose_trellis", + "value": "beautify:blocks/jungle_rose_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -32,7 +32,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/jungle_sunflower_trellis", + "value": "beautify:blocks/jungle_sunflower_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -45,7 +45,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/jungle_peony_trellis", + "value": "beautify:blocks/jungle_peony_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -58,7 +58,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/jungle_lilac_trellis", + "value": "beautify:blocks/jungle_lilac_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -71,7 +71,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/jungle_vine_trellis", + "value": "beautify:blocks/jungle_vine_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -84,7 +84,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/jungle_weeping_vines_trellis", + "value": "beautify:blocks/jungle_weeping_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -97,7 +97,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/jungle_twisting_vines_trellis", + "value": "beautify:blocks/jungle_twisting_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -110,7 +110,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/jungle_lichen_trellis", + "value": "beautify:blocks/jungle_lichen_trellis", "conditions": [ { "condition": "minecraft:block_state_property", diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra.json new file mode 100644 index 00000000..53f6999e --- /dev/null +++ b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra.json @@ -0,0 +1,13 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "beautify:lamp_candelabra" + } + ] + } + ] +} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_black.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_black.json new file mode 100644 index 00000000..5879e974 --- /dev/null +++ b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_black.json @@ -0,0 +1,13 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "beautify:lamp_candelabra_black" + } + ] + } + ] +} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_blue.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_blue.json new file mode 100644 index 00000000..cbf08e6f --- /dev/null +++ b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_blue.json @@ -0,0 +1,13 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "beautify:lamp_candelabra_blue" + } + ] + } + ] +} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_brown.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_brown.json new file mode 100644 index 00000000..73dea085 --- /dev/null +++ b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_brown.json @@ -0,0 +1,13 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "beautify:lamp_candelabra_brown" + } + ] + } + ] +} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_cyan.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_cyan.json new file mode 100644 index 00000000..10f88fcf --- /dev/null +++ b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_cyan.json @@ -0,0 +1,13 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "beautify:lamp_candelabra_cyan" + } + ] + } + ] +} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_gray.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_gray.json new file mode 100644 index 00000000..393cf48d --- /dev/null +++ b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_gray.json @@ -0,0 +1,13 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "beautify:lamp_candelabra_gray" + } + ] + } + ] +} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_green.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_green.json new file mode 100644 index 00000000..4f1ace0c --- /dev/null +++ b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_green.json @@ -0,0 +1,13 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "beautify:lamp_candelabra_green" + } + ] + } + ] +} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_light_blue.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_light_blue.json new file mode 100644 index 00000000..a5976e75 --- /dev/null +++ b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_light_blue.json @@ -0,0 +1,13 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "beautify:lamp_candelabra_light_blue" + } + ] + } + ] +} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_light_gray.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_light_gray.json new file mode 100644 index 00000000..7459e58f --- /dev/null +++ b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_light_gray.json @@ -0,0 +1,13 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "beautify:lamp_candelabra_light_gray" + } + ] + } + ] +} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_lime.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_lime.json new file mode 100644 index 00000000..965ca51f --- /dev/null +++ b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_lime.json @@ -0,0 +1,13 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "beautify:lamp_candelabra_lime" + } + ] + } + ] +} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_magenta.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_magenta.json new file mode 100644 index 00000000..82a69ee1 --- /dev/null +++ b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_magenta.json @@ -0,0 +1,13 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "beautify:lamp_candelabra_magenta" + } + ] + } + ] +} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_orange.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_orange.json new file mode 100644 index 00000000..e7378819 --- /dev/null +++ b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_orange.json @@ -0,0 +1,13 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "beautify:lamp_candelabra_orange" + } + ] + } + ] +} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_pink.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_pink.json new file mode 100644 index 00000000..f1c97073 --- /dev/null +++ b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_pink.json @@ -0,0 +1,13 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "beautify:lamp_candelabra_pink" + } + ] + } + ] +} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_purple.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_purple.json new file mode 100644 index 00000000..c9d917be --- /dev/null +++ b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_purple.json @@ -0,0 +1,13 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "beautify:lamp_candelabra_purple" + } + ] + } + ] +} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_red.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_red.json new file mode 100644 index 00000000..ee9e623d --- /dev/null +++ b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_red.json @@ -0,0 +1,13 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "beautify:lamp_candelabra_red" + } + ] + } + ] +} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_white.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_white.json new file mode 100644 index 00000000..b8ce3cd6 --- /dev/null +++ b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_white.json @@ -0,0 +1,13 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "beautify:lamp_candelabra_white" + } + ] + } + ] +} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_yellow.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_yellow.json new file mode 100644 index 00000000..658af4b4 --- /dev/null +++ b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candelabra_yellow.json @@ -0,0 +1,13 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "beautify:lamp_candelabra_yellow" + } + ] + } + ] +} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra.json deleted file mode 100644 index f22d026c..00000000 --- a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra" - } - ] - } - ] -} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_black.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_black.json deleted file mode 100644 index a61b2206..00000000 --- a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_black.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_black" - } - ] - } - ] -} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_blue.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_blue.json deleted file mode 100644 index a12f067d..00000000 --- a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_blue.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_blue" - } - ] - } - ] -} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_brown.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_brown.json deleted file mode 100644 index b3a1949e..00000000 --- a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_brown.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_brown" - } - ] - } - ] -} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_cyan.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_cyan.json deleted file mode 100644 index 0c62efea..00000000 --- a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_cyan.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_cyan" - } - ] - } - ] -} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_gray.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_gray.json deleted file mode 100644 index 6f7357cb..00000000 --- a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_gray.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_gray" - } - ] - } - ] -} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_green.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_green.json deleted file mode 100644 index f1ad5fb9..00000000 --- a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_green.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_green" - } - ] - } - ] -} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_light_blue.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_light_blue.json deleted file mode 100644 index bbd53dc7..00000000 --- a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_light_blue.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_light_blue" - } - ] - } - ] -} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_light_gray.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_light_gray.json deleted file mode 100644 index bcf36055..00000000 --- a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_light_gray.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_light_gray" - } - ] - } - ] -} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_lime.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_lime.json deleted file mode 100644 index 1792756b..00000000 --- a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_lime.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_lime" - } - ] - } - ] -} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_magenta.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_magenta.json deleted file mode 100644 index 0af94a22..00000000 --- a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_magenta.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_magenta" - } - ] - } - ] -} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_orange.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_orange.json deleted file mode 100644 index 08b2ae92..00000000 --- a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_orange.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_orange" - } - ] - } - ] -} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_pink.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_pink.json deleted file mode 100644 index 13f271b9..00000000 --- a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_pink.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_pink" - } - ] - } - ] -} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_purple.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_purple.json deleted file mode 100644 index 78dbda8f..00000000 --- a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_purple.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_purple" - } - ] - } - ] -} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_red.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_red.json deleted file mode 100644 index 42c0aa8c..00000000 --- a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_red.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_red" - } - ] - } - ] -} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_white.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_white.json deleted file mode 100644 index 85846fef..00000000 --- a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_white.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_white" - } - ] - } - ] -} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_yellow.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_yellow.json deleted file mode 100644 index 977b47d5..00000000 --- a/src/main/resources/data/beautify/loot_tables/blocks/lamp_candleabra_yellow.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "pools": [ - { - "rolls": 1, - "entries": [ - { - "type": "minecraft:item", - "name": "beautify:lamp_candleabra_yellow" - } - ] - } - ] -} diff --git a/src/main/resources/data/beautify/loot_tables/blocks/lamp_jar.json b/src/main/resources/data/beautify/loot_tables/blocks/lamp_jar.json index abdc5249..3b050157 100644 --- a/src/main/resources/data/beautify/loot_tables/blocks/lamp_jar.json +++ b/src/main/resources/data/beautify/loot_tables/blocks/lamp_jar.json @@ -19,7 +19,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/lamp_jar1", + "value": "beautify:blocks/lamp_jar1", "conditions": [ { "condition": "minecraft:block_state_property", @@ -32,7 +32,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/lamp_jar2", + "value": "beautify:blocks/lamp_jar2", "conditions": [ { "condition": "minecraft:block_state_property", @@ -45,7 +45,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/lamp_jar3", + "value": "beautify:blocks/lamp_jar3", "conditions": [ { "condition": "minecraft:block_state_property", diff --git a/src/main/resources/data/beautify/loot_tables/blocks/mangrove_trellis.json b/src/main/resources/data/beautify/loot_tables/blocks/mangrove_trellis.json index 29355f1e..3840a8fd 100644 --- a/src/main/resources/data/beautify/loot_tables/blocks/mangrove_trellis.json +++ b/src/main/resources/data/beautify/loot_tables/blocks/mangrove_trellis.json @@ -19,7 +19,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/mangrove_rose_trellis", + "value": "beautify:blocks/mangrove_rose_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -32,7 +32,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/mangrove_sunflower_trellis", + "value": "beautify:blocks/mangrove_sunflower_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -45,7 +45,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/mangrove_peony_trellis", + "value": "beautify:blocks/mangrove_peony_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -58,7 +58,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/mangrove_lilac_trellis", + "value": "beautify:blocks/mangrove_lilac_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -71,7 +71,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/mangrove_vine_trellis", + "value": "beautify:blocks/mangrove_vine_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -84,7 +84,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/mangrove_weeping_vines_trellis", + "value": "beautify:blocks/mangrove_weeping_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -97,7 +97,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/mangrove_twisting_vines_trellis", + "value": "beautify:blocks/mangrove_twisting_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -110,7 +110,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/mangrove_lichen_trellis", + "value": "beautify:blocks/mangrove_lichen_trellis", "conditions": [ { "condition": "minecraft:block_state_property", diff --git a/src/main/resources/data/beautify/loot_tables/blocks/oak_trellis.json b/src/main/resources/data/beautify/loot_tables/blocks/oak_trellis.json index 20e61779..a6c180ca 100644 --- a/src/main/resources/data/beautify/loot_tables/blocks/oak_trellis.json +++ b/src/main/resources/data/beautify/loot_tables/blocks/oak_trellis.json @@ -19,7 +19,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/oak_rose_trellis", + "value": "beautify:blocks/oak_rose_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -32,7 +32,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/oak_sunflower_trellis", + "value": "beautify:blocks/oak_sunflower_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -45,7 +45,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/oak_peony_trellis", + "value": "beautify:blocks/oak_peony_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -58,7 +58,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/oak_lilac_trellis", + "value": "beautify:blocks/oak_lilac_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -71,7 +71,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/oak_vine_trellis", + "value": "beautify:blocks/oak_vine_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -84,7 +84,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/oak_weeping_vines_trellis", + "value": "beautify:blocks/oak_weeping_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -97,7 +97,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/oak_twisting_vines_trellis", + "value": "beautify:blocks/oak_twisting_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -110,7 +110,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/oak_lichen_trellis", + "value": "beautify:blocks/oak_lichen_trellis", "conditions": [ { "condition": "minecraft:block_state_property", diff --git a/src/main/resources/data/beautify/loot_tables/blocks/spruce_trellis.json b/src/main/resources/data/beautify/loot_tables/blocks/spruce_trellis.json index 23e0e4d6..10d5ee75 100644 --- a/src/main/resources/data/beautify/loot_tables/blocks/spruce_trellis.json +++ b/src/main/resources/data/beautify/loot_tables/blocks/spruce_trellis.json @@ -19,7 +19,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/spruce_rose_trellis", + "value": "beautify:blocks/spruce_rose_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -32,7 +32,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/spruce_sunflower_trellis", + "value": "beautify:blocks/spruce_sunflower_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -45,7 +45,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/spruce_peony_trellis", + "value": "beautify:blocks/spruce_peony_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -58,7 +58,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/spruce_lilac_trellis", + "value": "beautify:blocks/spruce_lilac_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -71,7 +71,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/spruce_vine_trellis", + "value": "beautify:blocks/spruce_vine_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -84,7 +84,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/spruce_weeping_vines_trellis", + "value": "beautify:blocks/spruce_weeping_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -97,7 +97,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/spruce_twisting_vines_trellis", + "value": "beautify:blocks/spruce_twisting_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -110,7 +110,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/spruce_lichen_trellis", + "value": "beautify:blocks/spruce_lichen_trellis", "conditions": [ { "condition": "minecraft:block_state_property", diff --git a/src/main/resources/data/beautify/loot_tables/blocks/warped_picture_frame.json b/src/main/resources/data/beautify/loot_tables/blocks/warped_picture_frame.json index d366a6b5..99827fd4 100644 --- a/src/main/resources/data/beautify/loot_tables/blocks/warped_picture_frame.json +++ b/src/main/resources/data/beautify/loot_tables/blocks/warped_picture_frame.json @@ -5,7 +5,7 @@ "entries": [ { "type": "minecraft:item", - "name": "beautify:acacia_picture_frame" + "name": "beautify:warped_picture_frame" } ] } diff --git a/src/main/resources/data/beautify/loot_tables/blocks/warped_trellis.json b/src/main/resources/data/beautify/loot_tables/blocks/warped_trellis.json index dab7bb49..e139ef54 100644 --- a/src/main/resources/data/beautify/loot_tables/blocks/warped_trellis.json +++ b/src/main/resources/data/beautify/loot_tables/blocks/warped_trellis.json @@ -19,7 +19,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/warped_rose_trellis", + "value": "beautify:blocks/warped_rose_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -32,7 +32,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/warped_sunflower_trellis", + "value": "beautify:blocks/warped_sunflower_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -45,7 +45,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/warped_peony_trellis", + "value": "beautify:blocks/warped_peony_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -58,7 +58,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/warped_lilac_trellis", + "value": "beautify:blocks/warped_lilac_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -71,7 +71,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/warped_vine_trellis", + "value": "beautify:blocks/warped_vine_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -84,7 +84,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/warped_weeping_vines_trellis", + "value": "beautify:blocks/warped_weeping_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -97,7 +97,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/warped_twisting_vines_trellis", + "value": "beautify:blocks/warped_twisting_vines_trellis", "conditions": [ { "condition": "minecraft:block_state_property", @@ -110,7 +110,7 @@ }, { "type": "minecraft:loot_table", - "name": "beautify:blocks/warped_lichen_trellis", + "value": "beautify:blocks/warped_lichen_trellis", "conditions": [ { "condition": "minecraft:block_state_property", diff --git a/src/main/resources/data/beautify/recipes/acacia_blinds.json b/src/main/resources/data/beautify/recipes/acacia_blinds.json index 95a6a494..466517d1 100644 --- a/src/main/resources/data/beautify/recipes/acacia_blinds.json +++ b/src/main/resources/data/beautify/recipes/acacia_blinds.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "beautify:acacia_blinds", + "id": "beautify:acacia_blinds", "count": 1 }, "group": "blinds" diff --git a/src/main/resources/data/beautify/recipes/acacia_picture_frame.json b/src/main/resources/data/beautify/recipes/acacia_picture_frame.json index 46a934fc..182bfc74 100644 --- a/src/main/resources/data/beautify/recipes/acacia_picture_frame.json +++ b/src/main/resources/data/beautify/recipes/acacia_picture_frame.json @@ -17,7 +17,7 @@ } }, "result": { - "item": "beautify:acacia_picture_frame", + "id": "beautify:acacia_picture_frame", "count": 1 }, "group": "frames" diff --git a/src/main/resources/data/beautify/recipes/acacia_trellis.json b/src/main/resources/data/beautify/recipes/acacia_trellis.json index e225bb23..46a19e91 100644 --- a/src/main/resources/data/beautify/recipes/acacia_trellis.json +++ b/src/main/resources/data/beautify/recipes/acacia_trellis.json @@ -14,7 +14,7 @@ } }, "result": { - "item": "beautify:acacia_trellis", + "id": "beautify:acacia_trellis", "count": 4 }, "group": "trellis" diff --git a/src/main/resources/data/beautify/recipes/birch_blinds.json b/src/main/resources/data/beautify/recipes/birch_blinds.json index 015a1ddd..b3175c0b 100644 --- a/src/main/resources/data/beautify/recipes/birch_blinds.json +++ b/src/main/resources/data/beautify/recipes/birch_blinds.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "beautify:birch_blinds", + "id": "beautify:birch_blinds", "count": 1 }, "group": "blinds" diff --git a/src/main/resources/data/beautify/recipes/birch_picture_frame.json b/src/main/resources/data/beautify/recipes/birch_picture_frame.json index b49b4da9..dea53d19 100644 --- a/src/main/resources/data/beautify/recipes/birch_picture_frame.json +++ b/src/main/resources/data/beautify/recipes/birch_picture_frame.json @@ -17,7 +17,7 @@ } }, "result": { - "item": "beautify:birch_picture_frame", + "id": "beautify:birch_picture_frame", "count": 1 }, "group": "frames" diff --git a/src/main/resources/data/beautify/recipes/birch_trellis.json b/src/main/resources/data/beautify/recipes/birch_trellis.json index 342afa76..26df6cee 100644 --- a/src/main/resources/data/beautify/recipes/birch_trellis.json +++ b/src/main/resources/data/beautify/recipes/birch_trellis.json @@ -14,7 +14,7 @@ } }, "result": { - "item": "beautify:birch_trellis", + "id": "beautify:birch_trellis", "count": 4 }, "group": "trellis" diff --git a/src/main/resources/data/beautify/recipes/bookstack.json b/src/main/resources/data/beautify/recipes/bookstack.json index 18b6336f..8aa8e95d 100644 --- a/src/main/resources/data/beautify/recipes/bookstack.json +++ b/src/main/resources/data/beautify/recipes/bookstack.json @@ -12,7 +12,7 @@ } ], "result": { - "item": "beautify:bookstack", + "id": "beautify:bookstack", "count": 1 } } diff --git a/src/main/resources/data/beautify/recipes/botanist_workbench.json b/src/main/resources/data/beautify/recipes/botanist_workbench.json index 0e6a5dbb..62354914 100644 --- a/src/main/resources/data/beautify/recipes/botanist_workbench.json +++ b/src/main/resources/data/beautify/recipes/botanist_workbench.json @@ -15,7 +15,7 @@ ] }, "result": { - "item": "beautify:botanist_workbench", + "id": "beautify:botanist_workbench", "count": 1 } } \ No newline at end of file diff --git a/src/main/resources/data/beautify/recipes/candelabra.json b/src/main/resources/data/beautify/recipes/candelabra.json new file mode 100644 index 00000000..c861ceb2 --- /dev/null +++ b/src/main/resources/data/beautify/recipes/candelabra.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "III", + " I " + ], + "key": { + "#": { + "item": "minecraft:candle" + }, + "I": { + "item": "minecraft:iron_nugget" + } + }, + "result": { + "id": "beautify:lamp_candelabra", + "count": 1 + }, + "group": "candelabras" +} diff --git a/src/main/resources/data/beautify/recipes/candelabra_black.json b/src/main/resources/data/beautify/recipes/candelabra_black.json new file mode 100644 index 00000000..672e3267 --- /dev/null +++ b/src/main/resources/data/beautify/recipes/candelabra_black.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "III", + " I " + ], + "key": { + "#": { + "item": "minecraft:black_candle" + }, + "I": { + "item": "minecraft:iron_nugget" + } + }, + "result": { + "id": "beautify:lamp_candelabra_black", + "count": 1 + }, + "group": "candelabras" +} diff --git a/src/main/resources/data/beautify/recipes/candelabra_blue.json b/src/main/resources/data/beautify/recipes/candelabra_blue.json new file mode 100644 index 00000000..900fb038 --- /dev/null +++ b/src/main/resources/data/beautify/recipes/candelabra_blue.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "III", + " I " + ], + "key": { + "#": { + "item": "minecraft:blue_candle" + }, + "I": { + "item": "minecraft:iron_nugget" + } + }, + "result": { + "id": "beautify:lamp_candelabra_blue", + "count": 1 + }, + "group": "candelabras" +} diff --git a/src/main/resources/data/beautify/recipes/candelabra_brown.json b/src/main/resources/data/beautify/recipes/candelabra_brown.json new file mode 100644 index 00000000..d5a7712f --- /dev/null +++ b/src/main/resources/data/beautify/recipes/candelabra_brown.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "III", + " I " + ], + "key": { + "#": { + "item": "minecraft:brown_candle" + }, + "I": { + "item": "minecraft:iron_nugget" + } + }, + "result": { + "id": "beautify:lamp_candelabra_brown", + "count": 1 + }, + "group": "candelabras" +} diff --git a/src/main/resources/data/beautify/recipes/candelabra_cyan.json b/src/main/resources/data/beautify/recipes/candelabra_cyan.json new file mode 100644 index 00000000..f40810a9 --- /dev/null +++ b/src/main/resources/data/beautify/recipes/candelabra_cyan.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "III", + " I " + ], + "key": { + "#": { + "item": "minecraft:cyan_candle" + }, + "I": { + "item": "minecraft:iron_nugget" + } + }, + "result": { + "id": "beautify:lamp_candelabra_cyan", + "count": 1 + }, + "group": "candelabras" +} diff --git a/src/main/resources/data/beautify/recipes/candelabra_gray.json b/src/main/resources/data/beautify/recipes/candelabra_gray.json new file mode 100644 index 00000000..af380e82 --- /dev/null +++ b/src/main/resources/data/beautify/recipes/candelabra_gray.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "III", + " I " + ], + "key": { + "#": { + "item": "minecraft:gray_candle" + }, + "I": { + "item": "minecraft:iron_nugget" + } + }, + "result": { + "id": "beautify:lamp_candelabra_gray", + "count": 1 + }, + "group": "candelabras" +} diff --git a/src/main/resources/data/beautify/recipes/candelabra_green.json b/src/main/resources/data/beautify/recipes/candelabra_green.json new file mode 100644 index 00000000..95edd83f --- /dev/null +++ b/src/main/resources/data/beautify/recipes/candelabra_green.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "III", + " I " + ], + "key": { + "#": { + "item": "minecraft:green_candle" + }, + "I": { + "item": "minecraft:iron_nugget" + } + }, + "result": { + "id": "beautify:lamp_candelabra_green", + "count": 1 + }, + "group": "candelabras" +} diff --git a/src/main/resources/data/beautify/recipes/candelabra_light_blue.json b/src/main/resources/data/beautify/recipes/candelabra_light_blue.json new file mode 100644 index 00000000..7a0632c7 --- /dev/null +++ b/src/main/resources/data/beautify/recipes/candelabra_light_blue.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "III", + " I " + ], + "key": { + "#": { + "item": "minecraft:light_blue_candle" + }, + "I": { + "item": "minecraft:iron_nugget" + } + }, + "result": { + "id": "beautify:lamp_candelabra_light_blue", + "count": 1 + }, + "group": "candelabras" +} diff --git a/src/main/resources/data/beautify/recipes/candelabra_light_gray.json b/src/main/resources/data/beautify/recipes/candelabra_light_gray.json new file mode 100644 index 00000000..dcd9e4a2 --- /dev/null +++ b/src/main/resources/data/beautify/recipes/candelabra_light_gray.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "III", + " I " + ], + "key": { + "#": { + "item": "minecraft:light_gray_candle" + }, + "I": { + "item": "minecraft:iron_nugget" + } + }, + "result": { + "id": "beautify:lamp_candelabra_light_gray", + "count": 1 + }, + "group": "candelabras" +} diff --git a/src/main/resources/data/beautify/recipes/candelabra_lime.json b/src/main/resources/data/beautify/recipes/candelabra_lime.json new file mode 100644 index 00000000..91e93147 --- /dev/null +++ b/src/main/resources/data/beautify/recipes/candelabra_lime.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "III", + " I " + ], + "key": { + "#": { + "item": "minecraft:lime_candle" + }, + "I": { + "item": "minecraft:iron_nugget" + } + }, + "result": { + "id": "beautify:lamp_candelabra_lime", + "count": 1 + }, + "group": "candelabras" +} diff --git a/src/main/resources/data/beautify/recipes/candelabra_magenta.json b/src/main/resources/data/beautify/recipes/candelabra_magenta.json new file mode 100644 index 00000000..13abe912 --- /dev/null +++ b/src/main/resources/data/beautify/recipes/candelabra_magenta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "III", + " I " + ], + "key": { + "#": { + "item": "minecraft:magenta_candle" + }, + "I": { + "item": "minecraft:iron_nugget" + } + }, + "result": { + "id": "beautify:lamp_candelabra_magenta", + "count": 1 + }, + "group": "candelabras" +} diff --git a/src/main/resources/data/beautify/recipes/candelabra_orange.json b/src/main/resources/data/beautify/recipes/candelabra_orange.json new file mode 100644 index 00000000..f1f55d0b --- /dev/null +++ b/src/main/resources/data/beautify/recipes/candelabra_orange.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "III", + " I " + ], + "key": { + "#": { + "item": "minecraft:orange_candle" + }, + "I": { + "item": "minecraft:iron_nugget" + } + }, + "result": { + "id": "beautify:lamp_candelabra_orange", + "count": 1 + }, + "group": "candelabras" +} diff --git a/src/main/resources/data/beautify/recipes/candelabra_pink.json b/src/main/resources/data/beautify/recipes/candelabra_pink.json new file mode 100644 index 00000000..6f65c852 --- /dev/null +++ b/src/main/resources/data/beautify/recipes/candelabra_pink.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "III", + " I " + ], + "key": { + "#": { + "item": "minecraft:pink_candle" + }, + "I": { + "item": "minecraft:iron_nugget" + } + }, + "result": { + "id": "beautify:lamp_candelabra_pink", + "count": 1 + }, + "group": "candelabras" +} diff --git a/src/main/resources/data/beautify/recipes/candelabra_purple.json b/src/main/resources/data/beautify/recipes/candelabra_purple.json new file mode 100644 index 00000000..3a6d5617 --- /dev/null +++ b/src/main/resources/data/beautify/recipes/candelabra_purple.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "III", + " I " + ], + "key": { + "#": { + "item": "minecraft:purple_candle" + }, + "I": { + "item": "minecraft:iron_nugget" + } + }, + "result": { + "id": "beautify:lamp_candelabra_purple", + "count": 1 + }, + "group": "candelabras" +} diff --git a/src/main/resources/data/beautify/recipes/candelabra_red.json b/src/main/resources/data/beautify/recipes/candelabra_red.json new file mode 100644 index 00000000..ca0b1d74 --- /dev/null +++ b/src/main/resources/data/beautify/recipes/candelabra_red.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "III", + " I " + ], + "key": { + "#": { + "item": "minecraft:red_candle" + }, + "I": { + "item": "minecraft:iron_nugget" + } + }, + "result": { + "id": "beautify:lamp_candelabra_red", + "count": 1 + }, + "group": "candelabras" +} diff --git a/src/main/resources/data/beautify/recipes/candelabra_white.json b/src/main/resources/data/beautify/recipes/candelabra_white.json new file mode 100644 index 00000000..00923309 --- /dev/null +++ b/src/main/resources/data/beautify/recipes/candelabra_white.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "III", + " I " + ], + "key": { + "#": { + "item": "minecraft:white_candle" + }, + "I": { + "item": "minecraft:iron_nugget" + } + }, + "result": { + "id": "beautify:lamp_candelabra_white", + "count": 1 + }, + "group": "candelabras" +} diff --git a/src/main/resources/data/beautify/recipes/candelabra_yellow.json b/src/main/resources/data/beautify/recipes/candelabra_yellow.json new file mode 100644 index 00000000..e6383ca0 --- /dev/null +++ b/src/main/resources/data/beautify/recipes/candelabra_yellow.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "III", + " I " + ], + "key": { + "#": { + "item": "minecraft:yellow_candle" + }, + "I": { + "item": "minecraft:iron_nugget" + } + }, + "result": { + "id": "beautify:lamp_candelabra_yellow", + "count": 1 + }, + "group": "candelabras" +} diff --git a/src/main/resources/data/beautify/recipes/candleabra.json b/src/main/resources/data/beautify/recipes/candleabra.json deleted file mode 100644 index fa6ef0e0..00000000 --- a/src/main/resources/data/beautify/recipes/candleabra.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra", - "count": 1 - }, - "group": "candleabras" -} diff --git a/src/main/resources/data/beautify/recipes/candleabra_black.json b/src/main/resources/data/beautify/recipes/candleabra_black.json deleted file mode 100644 index 8c0b5858..00000000 --- a/src/main/resources/data/beautify/recipes/candleabra_black.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:black_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_black", - "count": 1 - }, - "group": "candleabras" -} diff --git a/src/main/resources/data/beautify/recipes/candleabra_blue.json b/src/main/resources/data/beautify/recipes/candleabra_blue.json deleted file mode 100644 index 0bef8506..00000000 --- a/src/main/resources/data/beautify/recipes/candleabra_blue.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:blue_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_blue", - "count": 1 - }, - "group": "candleabras" -} diff --git a/src/main/resources/data/beautify/recipes/candleabra_brown.json b/src/main/resources/data/beautify/recipes/candleabra_brown.json deleted file mode 100644 index aa45f5f8..00000000 --- a/src/main/resources/data/beautify/recipes/candleabra_brown.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:brown_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_brown", - "count": 1 - }, - "group": "candleabras" -} diff --git a/src/main/resources/data/beautify/recipes/candleabra_cyan.json b/src/main/resources/data/beautify/recipes/candleabra_cyan.json deleted file mode 100644 index 0a80ef45..00000000 --- a/src/main/resources/data/beautify/recipes/candleabra_cyan.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:cyan_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_cyan", - "count": 1 - }, - "group": "candleabras" -} diff --git a/src/main/resources/data/beautify/recipes/candleabra_gray.json b/src/main/resources/data/beautify/recipes/candleabra_gray.json deleted file mode 100644 index 7f7d9886..00000000 --- a/src/main/resources/data/beautify/recipes/candleabra_gray.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:gray_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_gray", - "count": 1 - }, - "group": "candleabras" -} diff --git a/src/main/resources/data/beautify/recipes/candleabra_green.json b/src/main/resources/data/beautify/recipes/candleabra_green.json deleted file mode 100644 index 461929e6..00000000 --- a/src/main/resources/data/beautify/recipes/candleabra_green.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:green_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_green", - "count": 1 - }, - "group": "candleabras" -} diff --git a/src/main/resources/data/beautify/recipes/candleabra_light_blue.json b/src/main/resources/data/beautify/recipes/candleabra_light_blue.json deleted file mode 100644 index fcb74e14..00000000 --- a/src/main/resources/data/beautify/recipes/candleabra_light_blue.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:light_blue_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_light_blue", - "count": 1 - }, - "group": "candleabras" -} diff --git a/src/main/resources/data/beautify/recipes/candleabra_light_gray.json b/src/main/resources/data/beautify/recipes/candleabra_light_gray.json deleted file mode 100644 index 85bf1ee5..00000000 --- a/src/main/resources/data/beautify/recipes/candleabra_light_gray.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:light_gray_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_light_gray", - "count": 1 - }, - "group": "candleabras" -} diff --git a/src/main/resources/data/beautify/recipes/candleabra_lime.json b/src/main/resources/data/beautify/recipes/candleabra_lime.json deleted file mode 100644 index 791f9ac0..00000000 --- a/src/main/resources/data/beautify/recipes/candleabra_lime.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:lime_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_lime", - "count": 1 - }, - "group": "candleabras" -} diff --git a/src/main/resources/data/beautify/recipes/candleabra_magenta.json b/src/main/resources/data/beautify/recipes/candleabra_magenta.json deleted file mode 100644 index e9084fb8..00000000 --- a/src/main/resources/data/beautify/recipes/candleabra_magenta.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:magenta_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_magenta", - "count": 1 - }, - "group": "candleabras" -} diff --git a/src/main/resources/data/beautify/recipes/candleabra_orange.json b/src/main/resources/data/beautify/recipes/candleabra_orange.json deleted file mode 100644 index 6d21c453..00000000 --- a/src/main/resources/data/beautify/recipes/candleabra_orange.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:orange_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_orange", - "count": 1 - }, - "group": "candleabras" -} diff --git a/src/main/resources/data/beautify/recipes/candleabra_pink.json b/src/main/resources/data/beautify/recipes/candleabra_pink.json deleted file mode 100644 index 29555b25..00000000 --- a/src/main/resources/data/beautify/recipes/candleabra_pink.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:pink_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_pink", - "count": 1 - }, - "group": "candleabras" -} diff --git a/src/main/resources/data/beautify/recipes/candleabra_purple.json b/src/main/resources/data/beautify/recipes/candleabra_purple.json deleted file mode 100644 index 5ef4a65b..00000000 --- a/src/main/resources/data/beautify/recipes/candleabra_purple.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:purple_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_purple", - "count": 1 - }, - "group": "candleabras" -} diff --git a/src/main/resources/data/beautify/recipes/candleabra_red.json b/src/main/resources/data/beautify/recipes/candleabra_red.json deleted file mode 100644 index b242c3af..00000000 --- a/src/main/resources/data/beautify/recipes/candleabra_red.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:red_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_red", - "count": 1 - }, - "group": "candleabras" -} diff --git a/src/main/resources/data/beautify/recipes/candleabra_white.json b/src/main/resources/data/beautify/recipes/candleabra_white.json deleted file mode 100644 index 8c7b50f6..00000000 --- a/src/main/resources/data/beautify/recipes/candleabra_white.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:white_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_white", - "count": 1 - }, - "group": "candleabras" -} diff --git a/src/main/resources/data/beautify/recipes/candleabra_yellow.json b/src/main/resources/data/beautify/recipes/candleabra_yellow.json deleted file mode 100644 index 93a273db..00000000 --- a/src/main/resources/data/beautify/recipes/candleabra_yellow.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "III", - " I " - ], - "key": { - "#": { - "item": "minecraft:yellow_candle" - }, - "I": { - "item": "minecraft:iron_nugget" - } - }, - "result": { - "item": "beautify:lamp_candleabra_yellow", - "count": 1 - }, - "group": "candleabras" -} diff --git a/src/main/resources/data/beautify/recipes/cherry_blinds.json b/src/main/resources/data/beautify/recipes/cherry_blinds.json index 4ba97f80..8e4c8f6e 100644 --- a/src/main/resources/data/beautify/recipes/cherry_blinds.json +++ b/src/main/resources/data/beautify/recipes/cherry_blinds.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "beautify:cherry_blinds", + "id": "beautify:cherry_blinds", "count": 1 }, "group": "blinds" diff --git a/src/main/resources/data/beautify/recipes/cherry_picture_frame.json b/src/main/resources/data/beautify/recipes/cherry_picture_frame.json index f439d0d2..1425290c 100644 --- a/src/main/resources/data/beautify/recipes/cherry_picture_frame.json +++ b/src/main/resources/data/beautify/recipes/cherry_picture_frame.json @@ -17,7 +17,7 @@ } }, "result": { - "item": "beautify:cherry_picture_frame", + "id": "beautify:cherry_picture_frame", "count": 1 }, "group": "frames" diff --git a/src/main/resources/data/beautify/recipes/cherry_trellis.json b/src/main/resources/data/beautify/recipes/cherry_trellis.json index 7a5b1b7e..bfa4d56b 100644 --- a/src/main/resources/data/beautify/recipes/cherry_trellis.json +++ b/src/main/resources/data/beautify/recipes/cherry_trellis.json @@ -14,7 +14,7 @@ } }, "result": { - "item": "beautify:cherry_trellis", + "id": "beautify:cherry_trellis", "count": 4 }, "group": "trellis" diff --git a/src/main/resources/data/beautify/recipes/crimson_blinds.json b/src/main/resources/data/beautify/recipes/crimson_blinds.json index f54db3bc..9fdcf656 100644 --- a/src/main/resources/data/beautify/recipes/crimson_blinds.json +++ b/src/main/resources/data/beautify/recipes/crimson_blinds.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "beautify:crimson_blinds", + "id": "beautify:crimson_blinds", "count": 1 }, "group": "blinds" diff --git a/src/main/resources/data/beautify/recipes/crimson_picture_frame.json b/src/main/resources/data/beautify/recipes/crimson_picture_frame.json index 43abc8f7..cc1c39e5 100644 --- a/src/main/resources/data/beautify/recipes/crimson_picture_frame.json +++ b/src/main/resources/data/beautify/recipes/crimson_picture_frame.json @@ -17,7 +17,7 @@ } }, "result": { - "item": "beautify:crimson_picture_frame", + "id": "beautify:crimson_picture_frame", "count": 1 }, "group": "frames" diff --git a/src/main/resources/data/beautify/recipes/crimson_trellis.json b/src/main/resources/data/beautify/recipes/crimson_trellis.json index 0d37239c..d7377268 100644 --- a/src/main/resources/data/beautify/recipes/crimson_trellis.json +++ b/src/main/resources/data/beautify/recipes/crimson_trellis.json @@ -14,7 +14,7 @@ } }, "result": { - "item": "beautify:crimson_trellis", + "id": "beautify:crimson_trellis", "count": 4 }, "group": "trellis" diff --git a/src/main/resources/data/beautify/recipes/dark_oak_blinds.json b/src/main/resources/data/beautify/recipes/dark_oak_blinds.json index 2b13b0c9..783b0a74 100644 --- a/src/main/resources/data/beautify/recipes/dark_oak_blinds.json +++ b/src/main/resources/data/beautify/recipes/dark_oak_blinds.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "beautify:dark_oak_blinds", + "id": "beautify:dark_oak_blinds", "count": 1 }, "group": "blinds" diff --git a/src/main/resources/data/beautify/recipes/dark_oak_picture_frame.json b/src/main/resources/data/beautify/recipes/dark_oak_picture_frame.json index f63f2239..6d282ecf 100644 --- a/src/main/resources/data/beautify/recipes/dark_oak_picture_frame.json +++ b/src/main/resources/data/beautify/recipes/dark_oak_picture_frame.json @@ -17,7 +17,7 @@ } }, "result": { - "item": "beautify:dark_oak_picture_frame", + "id": "beautify:dark_oak_picture_frame", "count": 1 }, "group": "frames" diff --git a/src/main/resources/data/beautify/recipes/dark_oak_trellis.json b/src/main/resources/data/beautify/recipes/dark_oak_trellis.json index 998eb9d1..07962a77 100644 --- a/src/main/resources/data/beautify/recipes/dark_oak_trellis.json +++ b/src/main/resources/data/beautify/recipes/dark_oak_trellis.json @@ -14,7 +14,7 @@ } }, "result": { - "item": "beautify:dark_oak_trellis", + "id": "beautify:dark_oak_trellis", "count": 4 }, "group": "trellis" diff --git a/src/main/resources/data/beautify/recipes/from_iron_blinds.json b/src/main/resources/data/beautify/recipes/from_iron_blinds.json index 26cef2fc..4ec6d424 100644 --- a/src/main/resources/data/beautify/recipes/from_iron_blinds.json +++ b/src/main/resources/data/beautify/recipes/from_iron_blinds.json @@ -1,9 +1,12 @@ { "type": "minecraft:smelting", + "category": "blocks", "ingredient": { "item": "beautify:iron_blinds" }, - "result": "minecraft:iron_nugget", + "result": { + "id": "minecraft:iron_ingot" + }, "experience": 0.1, "cookingtime": 250 } \ No newline at end of file diff --git a/src/main/resources/data/beautify/recipes/hanging_pot.json b/src/main/resources/data/beautify/recipes/hanging_pot.json index aec19bf3..5d5d6ea4 100644 --- a/src/main/resources/data/beautify/recipes/hanging_pot.json +++ b/src/main/resources/data/beautify/recipes/hanging_pot.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "beautify:hanging_pot", + "id": "beautify:hanging_pot", "count": 1 }, "group": "hanging_pot" diff --git a/src/main/resources/data/beautify/recipes/iron_blinds.json b/src/main/resources/data/beautify/recipes/iron_blinds.json index 3467dd56..050f07c1 100644 --- a/src/main/resources/data/beautify/recipes/iron_blinds.json +++ b/src/main/resources/data/beautify/recipes/iron_blinds.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "beautify:iron_blinds", + "id": "beautify:iron_blinds", "count": 2 }, "group": "blinds" diff --git a/src/main/resources/data/beautify/recipes/jungle_blinds.json b/src/main/resources/data/beautify/recipes/jungle_blinds.json index 758c421a..2c1966be 100644 --- a/src/main/resources/data/beautify/recipes/jungle_blinds.json +++ b/src/main/resources/data/beautify/recipes/jungle_blinds.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "beautify:jungle_blinds", + "id": "beautify:jungle_blinds", "count": 1 }, "group": "blinds" diff --git a/src/main/resources/data/beautify/recipes/jungle_picture_frame.json b/src/main/resources/data/beautify/recipes/jungle_picture_frame.json index a47c943f..a7c9effd 100644 --- a/src/main/resources/data/beautify/recipes/jungle_picture_frame.json +++ b/src/main/resources/data/beautify/recipes/jungle_picture_frame.json @@ -17,7 +17,7 @@ } }, "result": { - "item": "beautify:jungle_picture_frame", + "id": "beautify:jungle_picture_frame", "count": 1 }, "group": "frames" diff --git a/src/main/resources/data/beautify/recipes/jungle_trellis.json b/src/main/resources/data/beautify/recipes/jungle_trellis.json index 9b19864d..b4cdee7e 100644 --- a/src/main/resources/data/beautify/recipes/jungle_trellis.json +++ b/src/main/resources/data/beautify/recipes/jungle_trellis.json @@ -14,7 +14,7 @@ } }, "result": { - "item": "beautify:jungle_trellis", + "id": "beautify:jungle_trellis", "count": 4 }, "group": "trellis" diff --git a/src/main/resources/data/beautify/recipes/lamp_bamboo.json b/src/main/resources/data/beautify/recipes/lamp_bamboo.json index 66f01f71..de661b64 100644 --- a/src/main/resources/data/beautify/recipes/lamp_bamboo.json +++ b/src/main/resources/data/beautify/recipes/lamp_bamboo.json @@ -17,7 +17,7 @@ } }, "result": { - "item": "beautify:lamp_bamboo", + "id": "beautify:lamp_bamboo", "count": 1 } } diff --git a/src/main/resources/data/beautify/recipes/lamp_jar.json b/src/main/resources/data/beautify/recipes/lamp_jar.json index f3afa6e1..0b666526 100644 --- a/src/main/resources/data/beautify/recipes/lamp_jar.json +++ b/src/main/resources/data/beautify/recipes/lamp_jar.json @@ -9,7 +9,7 @@ } ], "result": { - "item": "beautify:lamp_jar", + "id": "beautify:lamp_jar", "count": 1 } } \ No newline at end of file diff --git a/src/main/resources/data/beautify/recipes/lamp_light_bulb.json b/src/main/resources/data/beautify/recipes/lamp_light_bulb.json index 88050f14..7cd5088a 100644 --- a/src/main/resources/data/beautify/recipes/lamp_light_bulb.json +++ b/src/main/resources/data/beautify/recipes/lamp_light_bulb.json @@ -14,7 +14,7 @@ } }, "result": { - "item": "beautify:lamp_light_bulb", + "id": "beautify:lamp_light_bulb", "count": 1 } } \ No newline at end of file diff --git a/src/main/resources/data/beautify/recipes/mangrove_blinds.json b/src/main/resources/data/beautify/recipes/mangrove_blinds.json index 826d6fa5..6070cffd 100644 --- a/src/main/resources/data/beautify/recipes/mangrove_blinds.json +++ b/src/main/resources/data/beautify/recipes/mangrove_blinds.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "beautify:mangrove_blinds", + "id": "beautify:mangrove_blinds", "count": 1 }, "group": "blinds" diff --git a/src/main/resources/data/beautify/recipes/mangrove_picture_frame.json b/src/main/resources/data/beautify/recipes/mangrove_picture_frame.json index 5cb968c0..f65ba86b 100644 --- a/src/main/resources/data/beautify/recipes/mangrove_picture_frame.json +++ b/src/main/resources/data/beautify/recipes/mangrove_picture_frame.json @@ -17,7 +17,7 @@ } }, "result": { - "item": "beautify:mangrove_picture_frame", + "id": "beautify:mangrove_picture_frame", "count": 1 }, "group": "frames" diff --git a/src/main/resources/data/beautify/recipes/mangrove_trellis.json b/src/main/resources/data/beautify/recipes/mangrove_trellis.json index 0d4f054f..d37b2adc 100644 --- a/src/main/resources/data/beautify/recipes/mangrove_trellis.json +++ b/src/main/resources/data/beautify/recipes/mangrove_trellis.json @@ -14,7 +14,7 @@ } }, "result": { - "item": "beautify:mangrove_trellis", + "id": "beautify:mangrove_trellis", "count": 4 }, "group": "trellis" diff --git a/src/main/resources/data/beautify/recipes/oak_blinds.json b/src/main/resources/data/beautify/recipes/oak_blinds.json index 2c3af16c..4a6c546c 100644 --- a/src/main/resources/data/beautify/recipes/oak_blinds.json +++ b/src/main/resources/data/beautify/recipes/oak_blinds.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "beautify:oak_blinds", + "id": "beautify:oak_blinds", "count": 1 }, "group": "blinds" diff --git a/src/main/resources/data/beautify/recipes/oak_picture_frame.json b/src/main/resources/data/beautify/recipes/oak_picture_frame.json index 96ceaa1d..7589b2ec 100644 --- a/src/main/resources/data/beautify/recipes/oak_picture_frame.json +++ b/src/main/resources/data/beautify/recipes/oak_picture_frame.json @@ -17,7 +17,7 @@ } }, "result": { - "item": "beautify:oak_picture_frame", + "id": "beautify:oak_picture_frame", "count": 1 }, "group": "frames" diff --git a/src/main/resources/data/beautify/recipes/oak_trellis.json b/src/main/resources/data/beautify/recipes/oak_trellis.json index 47444168..a1aaf7b8 100644 --- a/src/main/resources/data/beautify/recipes/oak_trellis.json +++ b/src/main/resources/data/beautify/recipes/oak_trellis.json @@ -14,7 +14,7 @@ } }, "result": { - "item": "beautify:oak_trellis", + "id": "beautify:oak_trellis", "count": 4 }, "group": "trellis" diff --git a/src/main/resources/data/beautify/recipes/quartz_picture_frame.json b/src/main/resources/data/beautify/recipes/quartz_picture_frame.json index cbd3f604..75802d51 100644 --- a/src/main/resources/data/beautify/recipes/quartz_picture_frame.json +++ b/src/main/resources/data/beautify/recipes/quartz_picture_frame.json @@ -17,7 +17,7 @@ } }, "result": { - "item": "beautify:quartz_picture_frame", + "id": "beautify:quartz_picture_frame", "count": 1 }, "group": "frames" diff --git a/src/main/resources/data/beautify/recipes/rope.json b/src/main/resources/data/beautify/recipes/rope.json index 72cf7b36..2b50ff83 100644 --- a/src/main/resources/data/beautify/recipes/rope.json +++ b/src/main/resources/data/beautify/recipes/rope.json @@ -11,7 +11,7 @@ } }, "result": { - "item": "beautify:rope", + "id": "beautify:rope", "count": 1 } } \ No newline at end of file diff --git a/src/main/resources/data/beautify/recipes/spruce_blinds.json b/src/main/resources/data/beautify/recipes/spruce_blinds.json index 6f5e16fd..3b80356b 100644 --- a/src/main/resources/data/beautify/recipes/spruce_blinds.json +++ b/src/main/resources/data/beautify/recipes/spruce_blinds.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "beautify:spruce_blinds", + "id": "beautify:spruce_blinds", "count": 1 }, "group": "blinds" diff --git a/src/main/resources/data/beautify/recipes/spruce_picture_frame.json b/src/main/resources/data/beautify/recipes/spruce_picture_frame.json index 55024805..a37602ab 100644 --- a/src/main/resources/data/beautify/recipes/spruce_picture_frame.json +++ b/src/main/resources/data/beautify/recipes/spruce_picture_frame.json @@ -17,7 +17,7 @@ } }, "result": { - "item": "beautify:spruce_picture_frame", + "id": "beautify:spruce_picture_frame", "count": 1 }, "group": "frames" diff --git a/src/main/resources/data/beautify/recipes/spruce_trellis.json b/src/main/resources/data/beautify/recipes/spruce_trellis.json index dbd7b405..161f09ac 100644 --- a/src/main/resources/data/beautify/recipes/spruce_trellis.json +++ b/src/main/resources/data/beautify/recipes/spruce_trellis.json @@ -14,7 +14,7 @@ } }, "result": { - "item": "beautify:spruce_trellis", + "id": "beautify:spruce_trellis", "count": 4 }, "group": "trellis" diff --git a/src/main/resources/data/beautify/recipes/warped_blinds.json b/src/main/resources/data/beautify/recipes/warped_blinds.json index b1e7100c..60b12c70 100644 --- a/src/main/resources/data/beautify/recipes/warped_blinds.json +++ b/src/main/resources/data/beautify/recipes/warped_blinds.json @@ -13,7 +13,7 @@ } }, "result": { - "item": "beautify:warped_blinds", + "id": "beautify:warped_blinds", "count": 1 }, "group": "blinds" diff --git a/src/main/resources/data/beautify/recipes/warped_picture_frame.json b/src/main/resources/data/beautify/recipes/warped_picture_frame.json index 5b8b033e..e6793b80 100644 --- a/src/main/resources/data/beautify/recipes/warped_picture_frame.json +++ b/src/main/resources/data/beautify/recipes/warped_picture_frame.json @@ -17,7 +17,7 @@ } }, "result": { - "item": "beautify:warped_picture_frame", + "id": "beautify:warped_picture_frame", "count": 1 }, "group": "frames" diff --git a/src/main/resources/data/beautify/recipes/warped_trellis.json b/src/main/resources/data/beautify/recipes/warped_trellis.json index 9f7d44bb..beb0e933 100644 --- a/src/main/resources/data/beautify/recipes/warped_trellis.json +++ b/src/main/resources/data/beautify/recipes/warped_trellis.json @@ -14,7 +14,7 @@ } }, "result": { - "item": "beautify:warped_trellis", + "id": "beautify:warped_trellis", "count": 4 }, "group": "trellis" diff --git a/src/main/resources/data/beautify/structures/botanist_house_desert.nbt b/src/main/resources/data/beautify/structures/botanist_house_desert.nbt index 3b66250d..d0bb572d 100644 Binary files a/src/main/resources/data/beautify/structures/botanist_house_desert.nbt and b/src/main/resources/data/beautify/structures/botanist_house_desert.nbt differ diff --git a/src/main/resources/data/beautify/structures/botanist_house_plains.nbt b/src/main/resources/data/beautify/structures/botanist_house_plains.nbt index d50fb857..c1328b4d 100644 Binary files a/src/main/resources/data/beautify/structures/botanist_house_plains.nbt and b/src/main/resources/data/beautify/structures/botanist_house_plains.nbt differ diff --git a/src/main/resources/data/beautify/structures/botanist_house_savanna.nbt b/src/main/resources/data/beautify/structures/botanist_house_savanna.nbt index 58a6feb3..3a226da9 100644 Binary files a/src/main/resources/data/beautify/structures/botanist_house_savanna.nbt and b/src/main/resources/data/beautify/structures/botanist_house_savanna.nbt differ diff --git a/src/main/resources/data/beautify/structures/botanist_house_snowy.nbt b/src/main/resources/data/beautify/structures/botanist_house_snowy.nbt index bbe41498..b1ca3cfa 100644 Binary files a/src/main/resources/data/beautify/structures/botanist_house_snowy.nbt and b/src/main/resources/data/beautify/structures/botanist_house_snowy.nbt differ diff --git a/src/main/resources/data/beautify/structures/botanist_house_taiga.nbt b/src/main/resources/data/beautify/structures/botanist_house_taiga.nbt index 2d1595fb..40e60833 100644 Binary files a/src/main/resources/data/beautify/structures/botanist_house_taiga.nbt and b/src/main/resources/data/beautify/structures/botanist_house_taiga.nbt differ diff --git a/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_desert_biomes.json b/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_desert_biomes.json deleted file mode 100644 index 2262d9ba..00000000 --- a/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_desert_biomes.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "_comment": " This biome tag can specify the biome directly. Or specify another biome tag by starting with # ", - "values": [ - ] -} diff --git a/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_plains_biomes.json b/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_plains_biomes.json deleted file mode 100644 index 2262d9ba..00000000 --- a/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_plains_biomes.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "_comment": " This biome tag can specify the biome directly. Or specify another biome tag by starting with # ", - "values": [ - ] -} diff --git a/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_savanna_biomes.json b/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_savanna_biomes.json deleted file mode 100644 index 2262d9ba..00000000 --- a/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_savanna_biomes.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "_comment": " This biome tag can specify the biome directly. Or specify another biome tag by starting with # ", - "values": [ - ] -} diff --git a/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_snowy_biomes.json b/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_snowy_biomes.json deleted file mode 100644 index 2262d9ba..00000000 --- a/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_snowy_biomes.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "_comment": " This biome tag can specify the biome directly. Or specify another biome tag by starting with # ", - "values": [ - ] -} diff --git a/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_taiga_biomes.json b/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_taiga_biomes.json deleted file mode 100644 index 2262d9ba..00000000 --- a/src/main/resources/data/beautify/tags/worldgen/biome/has_structure/botanist_house_taiga_biomes.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "_comment": " This biome tag can specify the biome directly. Or specify another biome tag by starting with # ", - "values": [ - ] -} diff --git a/src/main/resources/data/beautify/worldgen/processor_list/randomize_cobblestone.json b/src/main/resources/data/beautify/worldgen/processor_list/randomize_cobblestone.json deleted file mode 100644 index 2cb0cab5..00000000 --- a/src/main/resources/data/beautify/worldgen/processor_list/randomize_cobblestone.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - // Processor lists will run a processor for every block placed by the nbt file. - // The resultant block of the processor list is the block that actually gets placed in the world. - "processors": [ - // A single Rule processor for this list. - { - "processor_type": "minecraft:rule", - - // The rules for this Rule processor to use - "rules": [ - { - // The block to look for from the nbt file - // This has a 50% chance of allowing the found stone bricks block to be replaced - "input_predicate": { - "block": "minecraft:cobblestone", - "probability": 0.4, - "predicate_type": "minecraft:random_block_match" - }, - // This is always true - // Village roads have this part look for water so roads can be replaced with oak planks instead - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - // The actual block to place if the above conditions return true - "output_state": { - "Name": "minecraft:mossy_cobblestone" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/beautify/worldgen/processor_list/randomize_orange_terracotta.json b/src/main/resources/data/beautify/worldgen/processor_list/randomize_orange_terracotta.json deleted file mode 100644 index 9310dd55..00000000 --- a/src/main/resources/data/beautify/worldgen/processor_list/randomize_orange_terracotta.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - // Processor lists will run a processor for every block placed by the nbt file. - // The resultant block of the processor list is the block that actually gets placed in the world. - "processors": [ - // A single Rule processor for this list. - { - "processor_type": "minecraft:rule", - - // The rules for this Rule processor to use - "rules": [ - { - // The block to look for from the nbt file - // This has a 50% chance of allowing the found stone bricks block to be replaced - "input_predicate": { - "block": "minecraft:orange_terracotta", - "probability": 0.2, - "predicate_type": "minecraft:random_block_match" - }, - // This is always true - // Village roads have this part look for water so roads can be replaced with oak planks instead - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - // The actual block to place if the above conditions return true - "output_state": { - "Name": "minecraft:acacia_planks" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/beautify/worldgen/processor_list/randomize_sandstone.json b/src/main/resources/data/beautify/worldgen/processor_list/randomize_sandstone.json deleted file mode 100644 index 482579bd..00000000 --- a/src/main/resources/data/beautify/worldgen/processor_list/randomize_sandstone.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - // Processor lists will run a processor for every block placed by the nbt file. - // The resultant block of the processor list is the block that actually gets placed in the world. - "processors": [ - // A single Rule processor for this list. - { - "processor_type": "minecraft:rule", - - // The rules for this Rule processor to use - "rules": [ - { - // The block to look for from the nbt file - // This has a 50% chance of allowing the found stone bricks block to be replaced - "input_predicate": { - "block": "minecraft:smooth_sandstone", - "probability": 0.2, - "predicate_type": "minecraft:random_block_match" - }, - // This is always true - // Village roads have this part look for water so roads can be replaced with oak planks instead - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - // The actual block to place if the above conditions return true - "output_state": { - "Name": "minecraft:sandstone" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/beautify/worldgen/processor_list/randomize_spruce.json b/src/main/resources/data/beautify/worldgen/processor_list/randomize_spruce.json deleted file mode 100644 index fad3f8db..00000000 --- a/src/main/resources/data/beautify/worldgen/processor_list/randomize_spruce.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - // Processor lists will run a processor for every block placed by the nbt file. - // The resultant block of the processor list is the block that actually gets placed in the world. - "processors": [ - // A single Rule processor for this list. - { - "processor_type": "minecraft:rule", - - // The rules for this Rule processor to use - "rules": [ - { - // The block to look for from the nbt file - // This has a 50% chance of allowing the found stone bricks block to be replaced - "input_predicate": { - "block": "minecraft:spruce_planks", - "probability": 0.2, - "predicate_type": "minecraft:random_block_match" - }, - // This is always true - // Village roads have this part look for water so roads can be replaced with oak planks instead - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - // The actual block to place if the above conditions return true - "output_state": { - "Name": "minecraft:stripped_spruce_wood" - } - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/beautify/worldgen/structure/botanist_house_desert.json b/src/main/resources/data/beautify/worldgen/structure/botanist_house_desert.json deleted file mode 100644 index 6ccafb30..00000000 --- a/src/main/resources/data/beautify/worldgen/structure/botanist_house_desert.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - // The base structure class to use for the behavior of the structure. In this case, minecraft:jigsaw is good for most structures. - "type": "minecraft:jigsaw", - - // the path to the template pool json file to use - "start_pool": "beautify:botanist_house_desert/start_pool", - - // This is how many pieces away from the starting piece a piece of the structure can spawn - // Think of it like the length of the branch of the structure - "size": 1, - - // Maximum distance away from center that pieces can spawn. Cannot be greater than 128 - "max_distance_from_center": 80, - - // The biome tag to use for what biomes that this structure can spawn in" - "biomes": "#beautify:has_structure/botanist_house_desert_biomes", - - // The generation step for when to generate the structure. there are 10 stages you can pick from! - // This surface structure stage places the structure before plants and ores are generated - // See GenerationStep.Feature enum for all the stages you can use and what order they are in - "step": "surface_structures", - - // This will add land around the bottom of the structure. (Based on the starting piece's y value) - // The kinds of values allowed here are: none, beard_thin, beard_box, and bury - // If no land change is deseried, removed this field entirely. - "terrain_adaptation": "beard_thin", - - // Where to spawn our structure at what y value if project_start_to_heightmap is not present. - // start_height can be used to spawn at a random fixed y value by doing something like: "max_inclusive": { "below_top": 10 }, "min_inclusive": { "above_bottom": 32 } - // If project_start_to_heightmap is present, the y value chosen in start_height will be added to the terrain's y value. - // So a start height that gives -5 will sink the structure 5 blocks into the terrain. - "start_height": { - "absolute": 1 - }, - - // Makes our house snap to top land to spawn at. WORLD_SURFACE_WG will stop at first non-air block. - // To get top land at even the bottom of oceans, use OCEAN_FLOOR_WG. - // If no projection desired, remove this field entirely. - "project_start_to_heightmap": "WORLD_SURFACE_WG", - - // Keep this false. This is only for vanilla legacy villages to make it spawn properly. We don't need no hacks here! - "use_expansion_hack": false, - // What mobs can spawn over time in the structure. - // Make sure you add the mob to the right category (monster, creature, etc) - "spawn_overrides": { - } -} \ No newline at end of file diff --git a/src/main/resources/data/beautify/worldgen/structure/botanist_house_plains.json b/src/main/resources/data/beautify/worldgen/structure/botanist_house_plains.json deleted file mode 100644 index 4b75b482..00000000 --- a/src/main/resources/data/beautify/worldgen/structure/botanist_house_plains.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - // The base structure class to use for the behavior of the structure. In this case, minecraft:jigsaw is good for most structures. - "type": "minecraft:jigsaw", - - // the path to the template pool json file to use - "start_pool": "beautify:botanist_house_plains/start_pool", - - // This is how many pieces away from the starting piece a piece of the structure can spawn - // Think of it like the length of the branch of the structure - "size": 1, - - // Maximum distance away from center that pieces can spawn. Cannot be greater than 128 - "max_distance_from_center": 80, - - // The biome tag to use for what biomes that this structure can spawn in" - "biomes": "#beautify:has_structure/botanist_house_plains_biomes", - - // The generation step for when to generate the structure. there are 10 stages you can pick from! - // This surface structure stage places the structure before plants and ores are generated - // See GenerationStep.Feature enum for all the stages you can use and what order they are in - "step": "surface_structures", - - // This will add land around the bottom of the structure. (Based on the starting piece's y value) - // The kinds of values allowed here are: none, beard_thin, beard_box, and bury - // If no land change is deseried, removed this field entirely. - "terrain_adaptation": "beard_thin", - - // Where to spawn our structure at what y value if project_start_to_heightmap is not present. - // start_height can be used to spawn at a random fixed y value by doing something like: "max_inclusive": { "below_top": 10 }, "min_inclusive": { "above_bottom": 32 } - // If project_start_to_heightmap is present, the y value chosen in start_height will be added to the terrain's y value. - // So a start height that gives -5 will sink the structure 5 blocks into the terrain. - "start_height": { - "absolute": 1 - }, - - // Makes our house snap to top land to spawn at. WORLD_SURFACE_WG will stop at first non-air block. - // To get top land at even the bottom of oceans, use OCEAN_FLOOR_WG. - // If no projection desired, remove this field entirely. - "project_start_to_heightmap": "WORLD_SURFACE_WG", - - // Keep this false. This is only for vanilla legacy villages to make it spawn properly. We don't need no hacks here! - "use_expansion_hack": false, - // What mobs can spawn over time in the structure. - // Make sure you add the mob to the right category (monster, creature, etc) - "spawn_overrides": { - } -} \ No newline at end of file diff --git a/src/main/resources/data/beautify/worldgen/structure/botanist_house_savanna.json b/src/main/resources/data/beautify/worldgen/structure/botanist_house_savanna.json deleted file mode 100644 index 4d1ca282..00000000 --- a/src/main/resources/data/beautify/worldgen/structure/botanist_house_savanna.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - // The base structure class to use for the behavior of the structure. In this case, minecraft:jigsaw is good for most structures. - "type": "minecraft:jigsaw", - - // the path to the template pool json file to use - "start_pool": "beautify:botanist_house_savanna/start_pool", - - // This is how many pieces away from the starting piece a piece of the structure can spawn - // Think of it like the length of the branch of the structure - "size": 1, - - // Maximum distance away from center that pieces can spawn. Cannot be greater than 128 - "max_distance_from_center": 80, - - // The biome tag to use for what biomes that this structure can spawn in" - "biomes": "#beautify:has_structure/botanist_house_savanna_biomes", - - // The generation step for when to generate the structure. there are 10 stages you can pick from! - // This surface structure stage places the structure before plants and ores are generated - // See GenerationStep.Feature enum for all the stages you can use and what order they are in - "step": "surface_structures", - - // This will add land around the bottom of the structure. (Based on the starting piece's y value) - // The kinds of values allowed here are: none, beard_thin, beard_box, and bury - // If no land change is deseried, removed this field entirely. - "terrain_adaptation": "beard_thin", - - // Where to spawn our structure at what y value if project_start_to_heightmap is not present. - // start_height can be used to spawn at a random fixed y value by doing something like: "max_inclusive": { "below_top": 10 }, "min_inclusive": { "above_bottom": 32 } - // If project_start_to_heightmap is present, the y value chosen in start_height will be added to the terrain's y value. - // So a start height that gives -5 will sink the structure 5 blocks into the terrain. - "start_height": { - "absolute": 1 - }, - - // Makes our house snap to top land to spawn at. WORLD_SURFACE_WG will stop at first non-air block. - // To get top land at even the bottom of oceans, use OCEAN_FLOOR_WG. - // If no projection desired, remove this field entirely. - "project_start_to_heightmap": "WORLD_SURFACE_WG", - - // Keep this false. This is only for vanilla legacy villages to make it spawn properly. We don't need no hacks here! - "use_expansion_hack": false, - // What mobs can spawn over time in the structure. - // Make sure you add the mob to the right category (monster, creature, etc) - "spawn_overrides": { - } -} \ No newline at end of file diff --git a/src/main/resources/data/beautify/worldgen/structure/botanist_house_snowy.json b/src/main/resources/data/beautify/worldgen/structure/botanist_house_snowy.json deleted file mode 100644 index 3ac4d21c..00000000 --- a/src/main/resources/data/beautify/worldgen/structure/botanist_house_snowy.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - // The base structure class to use for the behavior of the structure. In this case, minecraft:jigsaw is good for most structures. - "type": "minecraft:jigsaw", - - // the path to the template pool json file to use - "start_pool": "beautify:botanist_house_snowy/start_pool", - - // This is how many pieces away from the starting piece a piece of the structure can spawn - // Think of it like the length of the branch of the structure - "size": 1, - - // Maximum distance away from center that pieces can spawn. Cannot be greater than 128 - "max_distance_from_center": 80, - - // The biome tag to use for what biomes that this structure can spawn in" - "biomes": "#beautify:has_structure/botanist_house_snowy_biomes", - - // The generation step for when to generate the structure. there are 10 stages you can pick from! - // This surface structure stage places the structure before plants and ores are generated - // See GenerationStep.Feature enum for all the stages you can use and what order they are in - "step": "surface_structures", - - // This will add land around the bottom of the structure. (Based on the starting piece's y value) - // The kinds of values allowed here are: none, beard_thin, beard_box, and bury - // If no land change is deseried, removed this field entirely. - "terrain_adaptation": "beard_thin", - - // Where to spawn our structure at what y value if project_start_to_heightmap is not present. - // start_height can be used to spawn at a random fixed y value by doing something like: "max_inclusive": { "below_top": 10 }, "min_inclusive": { "above_bottom": 32 } - // If project_start_to_heightmap is present, the y value chosen in start_height will be added to the terrain's y value. - // So a start height that gives -5 will sink the structure 5 blocks into the terrain. - "start_height": { - "absolute": 1 - }, - - // Makes our house snap to top land to spawn at. WORLD_SURFACE_WG will stop at first non-air block. - // To get top land at even the bottom of oceans, use OCEAN_FLOOR_WG. - // If no projection desired, remove this field entirely. - "project_start_to_heightmap": "WORLD_SURFACE_WG", - - // Keep this false. This is only for vanilla legacy villages to make it spawn properly. We don't need no hacks here! - "use_expansion_hack": false, - // What mobs can spawn over time in the structure. - // Make sure you add the mob to the right category (monster, creature, etc) - "spawn_overrides": { - } -} \ No newline at end of file diff --git a/src/main/resources/data/beautify/worldgen/structure/botanist_house_taiga.json b/src/main/resources/data/beautify/worldgen/structure/botanist_house_taiga.json deleted file mode 100644 index cafbffd8..00000000 --- a/src/main/resources/data/beautify/worldgen/structure/botanist_house_taiga.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - // The base structure class to use for the behavior of the structure. In this case, minecraft:jigsaw is good for most structures. - "type": "minecraft:jigsaw", - - // the path to the template pool json file to use - "start_pool": "beautify:botanist_house_taiga/start_pool", - - // This is how many pieces away from the starting piece a piece of the structure can spawn - // Think of it like the length of the branch of the structure - "size": 1, - - // Maximum distance away from center that pieces can spawn. Cannot be greater than 128 - "max_distance_from_center": 80, - - // The biome tag to use for what biomes that this structure can spawn in" - "biomes": "#beautify:has_structure/botanist_house_taiga_biomes", - - // The generation step for when to generate the structure. there are 10 stages you can pick from! - // This surface structure stage places the structure before plants and ores are generated - // See GenerationStep.Feature enum for all the stages you can use and what order they are in - "step": "surface_structures", - - // This will add land around the bottom of the structure. (Based on the starting piece's y value) - // The kinds of values allowed here are: none, beard_thin, beard_box, and bury - // If no land change is deseried, removed this field entirely. - "terrain_adaptation": "beard_thin", - - // Where to spawn our structure at what y value if project_start_to_heightmap is not present. - // start_height can be used to spawn at a random fixed y value by doing something like: "max_inclusive": { "below_top": 10 }, "min_inclusive": { "above_bottom": 32 } - // If project_start_to_heightmap is present, the y value chosen in start_height will be added to the terrain's y value. - // So a start height that gives -5 will sink the structure 5 blocks into the terrain. - "start_height": { - "absolute": 1 - }, - - // Makes our house snap to top land to spawn at. WORLD_SURFACE_WG will stop at first non-air block. - // To get top land at even the bottom of oceans, use OCEAN_FLOOR_WG. - // If no projection desired, remove this field entirely. - "project_start_to_heightmap": "WORLD_SURFACE_WG", - - // Keep this false. This is only for vanilla legacy villages to make it spawn properly. We don't need no hacks here! - "use_expansion_hack": false, - // What mobs can spawn over time in the structure. - // Make sure you add the mob to the right category (monster, creature, etc) - "spawn_overrides": { - } -} \ No newline at end of file diff --git a/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_desert.json b/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_desert.json deleted file mode 100644 index 6e57803f..00000000 --- a/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_desert.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // What structures to pick to try and spawn if a spot passes the placement check. - // If two or more structures in this list can spawn in a biome at a spot, a random one based on weight is chosen to spawn - "structures": [ - { - "structure": "beautify:botanist_house_desert", - "weight": 1 - } - ], - "placement": { - // The kind of placement to use. The other kind is ring based like strongholds use. - "type": "minecraft:random_spread", - - // Make sure this is unique and does not match any other structure set's salt - "salt": 1994267089, - - // The average distance apart in chunks for spawn attempts - "spacing": 20, - - // Minimum distance apart in chunks for spawn attempts - // MUST ALWAYS BE SMALLER THAN spacing ABOVE - "separation": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_plains.json b/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_plains.json deleted file mode 100644 index cbc0f173..00000000 --- a/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_plains.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // What structures to pick to try and spawn if a spot passes the placement check. - // If two or more structures in this list can spawn in a biome at a spot, a random one based on weight is chosen to spawn - "structures": [ - { - "structure": "beautify:botanist_house_plains", - "weight": 1 - } - ], - "placement": { - // The kind of placement to use. The other kind is ring based like strongholds use. - "type": "minecraft:random_spread", - - // Make sure this is unique and does not match any other structure set's salt - "salt": 1994267089, - - // The average distance apart in chunks for spawn attempts - "spacing": 20, - - // Minimum distance apart in chunks for spawn attempts - // MUST ALWAYS BE SMALLER THAN spacing ABOVE - "separation": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_savanna.json b/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_savanna.json deleted file mode 100644 index ab0c06b3..00000000 --- a/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_savanna.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // What structures to pick to try and spawn if a spot passes the placement check. - // If two or more structures in this list can spawn in a biome at a spot, a random one based on weight is chosen to spawn - "structures": [ - { - "structure": "beautify:botanist_house_savanna", - "weight": 1 - } - ], - "placement": { - // The kind of placement to use. The other kind is ring based like strongholds use. - "type": "minecraft:random_spread", - - // Make sure this is unique and does not match any other structure set's salt - "salt": 1994267089, - - // The average distance apart in chunks for spawn attempts - "spacing": 20, - - // Minimum distance apart in chunks for spawn attempts - // MUST ALWAYS BE SMALLER THAN spacing ABOVE - "separation": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_snowy.json b/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_snowy.json deleted file mode 100644 index 2d4a570f..00000000 --- a/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_snowy.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // What structures to pick to try and spawn if a spot passes the placement check. - // If two or more structures in this list can spawn in a biome at a spot, a random one based on weight is chosen to spawn - "structures": [ - { - "structure": "beautify:botanist_house_snowy", - "weight": 1 - } - ], - "placement": { - // The kind of placement to use. The other kind is ring based like strongholds use. - "type": "minecraft:random_spread", - - // Make sure this is unique and does not match any other structure set's salt - "salt": 1994267089, - - // The average distance apart in chunks for spawn attempts - "spacing": 20, - - // Minimum distance apart in chunks for spawn attempts - // MUST ALWAYS BE SMALLER THAN spacing ABOVE - "separation": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_taiga.json b/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_taiga.json deleted file mode 100644 index f14f67ec..00000000 --- a/src/main/resources/data/beautify/worldgen/structure_set/botanist_house_taiga.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - // What structures to pick to try and spawn if a spot passes the placement check. - // If two or more structures in this list can spawn in a biome at a spot, a random one based on weight is chosen to spawn - "structures": [ - { - "structure": "beautify:botanist_house_taiga", - "weight": 1 - } - ], - "placement": { - // The kind of placement to use. The other kind is ring based like strongholds use. - "type": "minecraft:random_spread", - - // Make sure this is unique and does not match any other structure set's salt - "salt": 1994267089, - - // The average distance apart in chunks for spawn attempts - "spacing": 20, - - // Minimum distance apart in chunks for spawn attempts - // MUST ALWAYS BE SMALLER THAN spacing ABOVE - "separation": 6 - } -} \ No newline at end of file diff --git a/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_desert/start_pool.json b/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_desert/start_pool.json deleted file mode 100644 index a7be59cc..00000000 --- a/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_desert/start_pool.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - // More info on template pools can be found here: https://minecraft.gamepedia.com/Custom_world_generation#JSON_format_8 - // Yes, worldgen json files can have comments. Minecraft does "lenient" parsing of these json files. - - // This is the name of the template pool itself. I tend to just put the file path and file name here with modid. - "name": "beautify:botanist_house_desert/start_pool", - - // The template pool to refer to if the entries in 'elements' fails to generate. - "fallback": "minecraft:empty", - - // Here you can list as many nbt files or placed features to spawn. - // Do note that placed features needs a special element entry stuff. - "elements": [ - { - - // How likely out of all the element for this one to be chosen. - "weight": 1, - "element": { - - // The Identifier of the nbt file itself of the structure piece. - // Note, this will automatically check into the 'structures' folder for the nbt file. - // The final path would look like 'resources/data/beautify/structures/run_down_house_left_side.nbt' - // The Jigsaw block in the structure will point to side_pool.json to spawn the other half of the house. - "location": "beautify:botanist_house_desert", - - // Processor JSON files can be used to randomize or replace blocks dynamically. Here, we don't do any of that. - "processors": "beautify:randomize_sandstone", - - // If set to 'terrain_matching', the house would be deformed to fit the change in land. - // That's best for roads so lets stay 'rigid' for now. - "projection": "rigid", - - // The kind of element we are spawning. This one is most likely what you want. - // There's 'minecraft:legacy_single_pool_element' but that swaps the behavior of - // Air and Structure Void in your piece as well as change the attachment mechanism. - // It's only for old Vanilla Jigsaw Structures so don't use it. Stick with non-legacy. - "element_type": "minecraft:single_pool_element" - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_plains/start_pool.json b/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_plains/start_pool.json deleted file mode 100644 index c8168c64..00000000 --- a/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_plains/start_pool.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - // More info on template pools can be found here: https://minecraft.gamepedia.com/Custom_world_generation#JSON_format_8 - // Yes, worldgen json files can have comments. Minecraft does "lenient" parsing of these json files. - - // This is the name of the template pool itself. I tend to just put the file path and file name here with modid. - "name": "beautify:botanist_house_plains/start_pool", - - // The template pool to refer to if the entries in 'elements' fails to generate. - "fallback": "minecraft:empty", - - // Here you can list as many nbt files or placed features to spawn. - // Do note that placed features needs a special element entry stuff. - "elements": [ - { - - // How likely out of all the element for this one to be chosen. - "weight": 1, - "element": { - - // The Identifier of the nbt file itself of the structure piece. - // Note, this will automatically check into the 'structures' folder for the nbt file. - // The final path would look like 'resources/data/beautify/structures/run_down_house_left_side.nbt' - // The Jigsaw block in the structure will point to side_pool.json to spawn the other half of the house. - "location": "beautify:botanist_house_plains", - - // Processor JSON files can be used to randomize or replace blocks dynamically. Here, we don't do any of that. - "processors": "beautify:randomize_cobblestone", - - // If set to 'terrain_matching', the house would be deformed to fit the change in land. - // That's best for roads so lets stay 'rigid' for now. - "projection": "rigid", - - // The kind of element we are spawning. This one is most likely what you want. - // There's 'minecraft:legacy_single_pool_element' but that swaps the behavior of - // Air and Structure Void in your piece as well as change the attachment mechanism. - // It's only for old Vanilla Jigsaw Structures so don't use it. Stick with non-legacy. - "element_type": "minecraft:single_pool_element" - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_savanna/start_pool.json b/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_savanna/start_pool.json deleted file mode 100644 index c928ccdc..00000000 --- a/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_savanna/start_pool.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - // More info on template pools can be found here: https://minecraft.gamepedia.com/Custom_world_generation#JSON_format_8 - // Yes, worldgen json files can have comments. Minecraft does "lenient" parsing of these json files. - - // This is the name of the template pool itself. I tend to just put the file path and file name here with modid. - "name": "beautify:botanist_house_savanna/start_pool", - - // The template pool to refer to if the entries in 'elements' fails to generate. - "fallback": "minecraft:empty", - - // Here you can list as many nbt files or placed features to spawn. - // Do note that placed features needs a special element entry stuff. - "elements": [ - { - - // How likely out of all the element for this one to be chosen. - "weight": 1, - "element": { - - // The Identifier of the nbt file itself of the structure piece. - // Note, this will automatically check into the 'structures' folder for the nbt file. - // The final path would look like 'resources/data/beautify/structures/run_down_house_left_side.nbt' - // The Jigsaw block in the structure will point to side_pool.json to spawn the other half of the house. - "location": "beautify:botanist_house_savanna", - - // Processor JSON files can be used to randomize or replace blocks dynamically. Here, we don't do any of that. - "processors": "beautify:randomize_orange_terracotta", - - // If set to 'terrain_matching', the house would be deformed to fit the change in land. - // That's best for roads so lets stay 'rigid' for now. - "projection": "rigid", - - // The kind of element we are spawning. This one is most likely what you want. - // There's 'minecraft:legacy_single_pool_element' but that swaps the behavior of - // Air and Structure Void in your piece as well as change the attachment mechanism. - // It's only for old Vanilla Jigsaw Structures so don't use it. Stick with non-legacy. - "element_type": "minecraft:single_pool_element" - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_snowy/start_pool.json b/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_snowy/start_pool.json deleted file mode 100644 index 639e201f..00000000 --- a/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_snowy/start_pool.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - // More info on template pools can be found here: https://minecraft.gamepedia.com/Custom_world_generation#JSON_format_8 - // Yes, worldgen json files can have comments. Minecraft does "lenient" parsing of these json files. - - // This is the name of the template pool itself. I tend to just put the file path and file name here with modid. - "name": "beautify:botanist_house_snowy/start_pool", - - // The template pool to refer to if the entries in 'elements' fails to generate. - "fallback": "minecraft:empty", - - // Here you can list as many nbt files or placed features to spawn. - // Do note that placed features needs a special element entry stuff. - "elements": [ - { - - // How likely out of all the element for this one to be chosen. - "weight": 1, - "element": { - - // The Identifier of the nbt file itself of the structure piece. - // Note, this will automatically check into the 'structures' folder for the nbt file. - // The final path would look like 'resources/data/beautify/structures/run_down_house_left_side.nbt' - // The Jigsaw block in the structure will point to side_pool.json to spawn the other half of the house. - "location": "beautify:botanist_house_snowy", - - // Processor JSON files can be used to randomize or replace blocks dynamically. Here, we don't do any of that. - "processors": "beautify:randomize_spruce", - - // If set to 'terrain_matching', the house would be deformed to fit the change in land. - // That's best for roads so lets stay 'rigid' for now. - "projection": "rigid", - - // The kind of element we are spawning. This one is most likely what you want. - // There's 'minecraft:legacy_single_pool_element' but that swaps the behavior of - // Air and Structure Void in your piece as well as change the attachment mechanism. - // It's only for old Vanilla Jigsaw Structures so don't use it. Stick with non-legacy. - "element_type": "minecraft:single_pool_element" - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_taiga/start_pool.json b/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_taiga/start_pool.json deleted file mode 100644 index 84440b79..00000000 --- a/src/main/resources/data/beautify/worldgen/template_pool/botanist_house_taiga/start_pool.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - // More info on template pools can be found here: https://minecraft.gamepedia.com/Custom_world_generation#JSON_format_8 - // Yes, worldgen json files can have comments. Minecraft does "lenient" parsing of these json files. - - // This is the name of the template pool itself. I tend to just put the file path and file name here with modid. - "name": "beautify:botanist_house_taiga/start_pool", - - // The template pool to refer to if the entries in 'elements' fails to generate. - "fallback": "minecraft:empty", - - // Here you can list as many nbt files or placed features to spawn. - // Do note that placed features needs a special element entry stuff. - "elements": [ - { - - // How likely out of all the element for this one to be chosen. - "weight": 1, - "element": { - - // The Identifier of the nbt file itself of the structure piece. - // Note, this will automatically check into the 'structures' folder for the nbt file. - // The final path would look like 'resources/data/beautify/structures/run_down_house_left_side.nbt' - // The Jigsaw block in the structure will point to side_pool.json to spawn the other half of the house. - "location": "beautify:botanist_house_taiga", - - // Processor JSON files can be used to randomize or replace blocks dynamically. Here, we don't do any of that. - "processors": "beautify:randomize_cobblestone", - - // If set to 'terrain_matching', the house would be deformed to fit the change in land. - // That's best for roads so lets stay 'rigid' for now. - "projection": "rigid", - - // The kind of element we are spawning. This one is most likely what you want. - // There's 'minecraft:legacy_single_pool_element' but that swaps the behavior of - // Air and Structure Void in your piece as well as change the attachment mechanism. - // It's only for old Vanilla Jigsaw Structures so don't use it. Stick with non-legacy. - "element_type": "minecraft:single_pool_element" - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json b/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json index 3676aab4..8a4c94b8 100644 --- a/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json +++ b/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json @@ -2,22 +2,22 @@ "replace": false, "values":[ "beautify:iron_blinds", - "beautify:lamp_candleabra", - "beautify:lamp_candleabra_light_blue", - "beautify:lamp_candleabra_light_gray", - "beautify:lamp_candleabra_black", - "beautify:lamp_candleabra_blue", - "beautify:lamp_candleabra_brown", - "beautify:lamp_candleabra_cyan", - "beautify:lamp_candleabra_gray", - "beautify:lamp_candleabra_green", - "beautify:lamp_candleabra_lime", - "beautify:lamp_candleabra_magenta", - "beautify:lamp_candleabra_orange", - "beautify:lamp_candleabra_pink", - "beautify:lamp_candleabra_purple", - "beautify:lamp_candleabra_red", - "beautify:lamp_candleabra_white", - "beautify:lamp_candleabra_yellow" + "beautify:lamp_candelabra", + "beautify:lamp_candelabra_light_blue", + "beautify:lamp_candelabra_light_gray", + "beautify:lamp_candelabra_black", + "beautify:lamp_candelabra_blue", + "beautify:lamp_candelabra_brown", + "beautify:lamp_candelabra_cyan", + "beautify:lamp_candelabra_gray", + "beautify:lamp_candelabra_green", + "beautify:lamp_candelabra_lime", + "beautify:lamp_candelabra_magenta", + "beautify:lamp_candelabra_orange", + "beautify:lamp_candelabra_pink", + "beautify:lamp_candelabra_purple", + "beautify:lamp_candelabra_red", + "beautify:lamp_candelabra_white", + "beautify:lamp_candelabra_yellow" ] } \ No newline at end of file